summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-01 22:35:05 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-01 22:35:05 +0000
commitfa25f26095cf3d2de410ec509265379246ea5414 (patch)
tree0703d41c01335d551b062e7d3cbcd407a7651553 /test/net
parent35186277d14806bc88843701a570f9ab73d91b8a (diff)
* test/net/http/test_http.rb (TestNetHTTP_version_1_1_methods#test_timeout_during_HTTP_session):
If you connect to localhost, you should listen localhost. * test/net/http/test_https.rb (TestNetHTTPS#test_timeout_during_SSL_handshake): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32806 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net')
-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)