git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2017-05-20 15:58:16 +00:00
Родитель ca34d7075a
Коммит a1b924f0f1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -225,7 +225,7 @@ class TestNetHTTP < Test::Unit::TestCase
def host.to_str; raise SocketError, "open failure"; end
uri = Struct.new(:scheme, :hostname, :port).new("http", host, port)
assert_raise_with_message(SocketError, /#{host}:#{port}/) do
Net::HTTP.get(uri)
clean_http_proxy_env{ Net::HTTP.get(uri) }
end
end