From fa25f26095cf3d2de410ec509265379246ea5414 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Mon, 1 Aug 2011 22:35:05 +0000 Subject: * 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 --- test/net/http/test_http.rb | 2 +- test/net/http/test_https.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') 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) -- cgit v1.2.3