From e040d6a2cf793a4e69475292eaf5c368e0a9cd4f Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 14 Nov 2007 07:17:18 +0000 Subject: * test/net/http/test_https_proxy.rb (HTTPSProxyTest::test_https_proxy_authentication): initialize local variable 't' first. [ruby-dev:32253] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/http/test_https_proxy.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') diff --git a/test/net/http/test_https_proxy.rb b/test/net/http/test_https_proxy.rb index 6332319f2..66ca3ddd9 100644 --- a/test/net/http/test_https_proxy.rb +++ b/test/net/http/test_https_proxy.rb @@ -6,6 +6,7 @@ require 'test/unit' class HTTPSProxyTest < Test::Unit::TestCase def test_https_proxy_authentication + t = nil TCPServer.open("127.0.0.1", 0) {|serv| _, port, _, _ = serv.addr t = Thread.new { @@ -25,6 +26,8 @@ class HTTPSProxyTest < Test::Unit::TestCase proxy_request, "[ruby-dev:25673]") } + ensure + t.join if t end end if defined?(OpenSSL) -- cgit