Use 127.0.0.1 instead of localhost
in test is_port_open_test.rb
This commit is contained in:
parent
ff3b025fc2
commit
a102bc064f
|
@ -36,7 +36,7 @@ describe Vagrant::Util::IsPortOpen do
|
||||||
end
|
end
|
||||||
|
|
||||||
# Verify that we report the port is open
|
# Verify that we report the port is open
|
||||||
expect(klass.is_port_open?("localhost", open_port)).to be
|
expect(klass.is_port_open?("127.0.0.1", open_port)).to be
|
||||||
|
|
||||||
# Kill the thread
|
# Kill the thread
|
||||||
thr[:die] = true
|
thr[:die] = true
|
||||||
|
@ -47,7 +47,7 @@ describe Vagrant::Util::IsPortOpen do
|
||||||
# This CAN fail, since port 52811 might actually be in use, but I'm
|
# This CAN fail, since port 52811 might actually be in use, but I'm
|
||||||
# not sure what to do except choose some random port and hope for the
|
# not sure what to do except choose some random port and hope for the
|
||||||
# best, really.
|
# best, really.
|
||||||
expect(klass.is_port_open?("localhost", closed_port)).not_to be
|
expect(klass.is_port_open?("127.0.0.1", closed_port)).not_to be
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue