* test/net/http/test_https_proxy.rb

(HTTPSProxyTest::test_https_proxy_authentication): initialize
  local variable 't' first.  [ruby-dev:32253]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-11-14 07:17:18 +00:00
Родитель 326659c0bf
Коммит 67172a2401
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Wed Nov 14 16:16:17 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* test/net/http/test_https_proxy.rb
(HTTPSProxyTest::test_https_proxy_authentication): initialize
local variable 't' first. [ruby-dev:32253]
Wed Nov 14 15:39:24 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* test/socket/test_socket.rb: update not to use 1.8 assignment to

Просмотреть файл

@ -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)