mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 08:42:33 -04:00
fix default IP address in test to all ipv4 addresses
This commit is contained in:
parent
fb159e7060
commit
dd40c68ff8
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ func TestStepHTTPIPDiscover_Run(t *testing.T) {
|
|||
t.Fatalf("bad: Http ip is %s but was supposed to be %s", httpIp, ip)
|
||||
}
|
||||
|
||||
_, ipNet, err := net.ParseCIDR("0.0.0.0/24")
|
||||
_, ipNet, err := net.ParseCIDR("0.0.0.0/0")
|
||||
if err != nil {
|
||||
t.Fatal("error getting ipNet", err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue