aboutsummaryrefslogtreecommitdiffstats
path: root/test/net/http
diff options
context:
space:
mode:
Diffstat (limited to 'test/net/http')
-rw-r--r--test/net/http/test_http.rb2
-rw-r--r--test/net/http/test_https.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index 660c0ffa7c..f863ba62c7 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -194,7 +194,7 @@ module TestNetHTTP_version_1_1_methods
bug4246 = "expected the HTTP session to have timed out but have not. c.f. [ruby-core:34203]"
# listen for connections... but deliberately do not complete SSL handshake
- TCPServer.open(0) {|server|
+ TCPServer.open('localhost', 0) {|server|
port = server.addr[1]
conn = Net::HTTP.new('localhost', port)
diff --git a/test/net/http/test_https.rb b/test/net/http/test_https.rb
index 983ba7f456..4bb4f6d3a6 100644
--- a/test/net/http/test_https.rb
+++ b/test/net/http/test_https.rb
@@ -110,7 +110,7 @@ class TestNetHTTPS < Test::Unit::TestCase
bug4246 = "expected the SSL connection to have timed out but have not. [ruby-core:34203]"
# listen for connections... but deliberately do not complete SSL handshake
- TCPServer.open(0) {|server|
+ TCPServer.open('localhost', 0) {|server|
port = server.addr[1]
conn = Net::HTTP.new('localhost', port)