minor
This commit is contained in:
parent
c16dc6cf62
commit
7c19221241
|
@ -37,7 +37,7 @@ func TestAutoHosts(t *testing.T) {
|
||||||
ips := ah.Process("localhost")
|
ips := ah.Process("localhost")
|
||||||
assert.True(t, ips[0].Equal(net.ParseIP("127.0.0.1")))
|
assert.True(t, ips[0].Equal(net.ParseIP("127.0.0.1")))
|
||||||
ips = ah.Process("newhost")
|
ips = ah.Process("newhost")
|
||||||
assert.True(t, len(ips) == 0)
|
assert.True(t, ips == nil)
|
||||||
|
|
||||||
table := ah.List()
|
table := ah.List()
|
||||||
ips, _ = table["host"]
|
ips, _ = table["host"]
|
||||||
|
|
Loading…
Reference in New Issue