mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-06 03:46:02 +08:00
fix integration tests
This commit is contained in:
parent
65a683ad79
commit
cfdc15fc8d
1 changed files with 1 additions and 2 deletions
|
@ -51,8 +51,7 @@ func TestGetNodeDNS(t *testing.T) {
|
|||
createNet()
|
||||
createHost()
|
||||
t.Run("NoNodes", func(t *testing.T) {
|
||||
dns, err := logic.GetNodeDNS("skynet")
|
||||
assert.EqualError(t, err, "could not find any records")
|
||||
dns, _ := logic.GetNodeDNS("skynet")
|
||||
assert.Equal(t, []models.DNSEntry(nil), dns)
|
||||
})
|
||||
t.Run("NodeExists", func(t *testing.T) {
|
||||
|
|
Loading…
Add table
Reference in a new issue