summaryrefslogtreecommitdiff
path: root/test/net/http/test_http.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/net/http/test_http.rb')
-rw-r--r--test/net/http/test_http.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index 709a2e2370..b07e2a48d6 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -910,7 +910,9 @@ class TestNetHTTPLocalBind < Test::Unit::TestCase
http = Net::HTTP.new(config('host'), config('port'))
http.local_host = Addrinfo.tcp(config('host'), config('port')).ip_address
- http.local_port = [*10000..20000].shuffle.first.to_s
+ http.local_port = Addrinfo.tcp(config('host'), 0).bind {|s|
+ s.local_address.ip_port.to_s
+ }
assert_not_nil(http.local_host)
assert_not_nil(http.local_port)