Skip to content

Commit 47352b9

Browse files
committed
* test/net/http/test_http.rb (TestNetHTTPLocalBind#test_bind_to_local*):
re-enable the tests because now it's OK on windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent fbd9511 commit 47352b9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/net/http/test_http.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,6 @@ class TestNetHTTPLocalBind < Test::Unit::TestCase
628628
include TestNetHTTPUtils
629629

630630
def test_bind_to_local_host
631-
skip "cannot cross between network interfaces on Windows, so skip this test until we find better test." if /mswin|mingw/ =~ RUBY_PLATFORM
632631
@server.mount_proc('/show_ip') { |req, res| res.body = req.remote_ip }
633632

634633
http = Net::HTTP.new(config('host'), config('port'))
@@ -641,7 +640,6 @@ def test_bind_to_local_host
641640
end
642641

643642
def test_bind_to_local_port
644-
skip "cannot cross between network interfaces on Windows, so skip this test until we find better test." if /mswin|mingw/ =~ RUBY_PLATFORM
645643
@server.mount_proc('/show_port') { |req, res| res.body = req.peeraddr[1].to_s }
646644

647645
http = Net::HTTP.new(config('host'), config('port'))

0 commit comments

Comments
 (0)