* test/net/http/test_http.rb (TestNetHTTPKeepAlive#*): remove debug

output.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2012-02-02 07:22:17 +00:00
Родитель 8107587039
Коммит a267b9512a
2 изменённых файлов: 5 добавлений и 2 удалений

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

@ -1,3 +1,8 @@
Thu Feb 2 16:21:01 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* test/net/http/test_http.rb (TestNetHTTPKeepAlive#*): remove debug
output.
Thu Feb 2 01:24:34 2012 Yusuke Endoh <mame@tsg.ne.jp> Thu Feb 2 01:24:34 2012 Yusuke Endoh <mame@tsg.ne.jp>
* parse.y (debug_lines, coverage): set file path encoding for coverage * parse.y (debug_lines, coverage): set file path encoding for coverage

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

@ -578,7 +578,6 @@ class TestNetHTTPKeepAlive < Test::Unit::TestCase
def test_keep_alive_get_auto_reconnect def test_keep_alive_get_auto_reconnect
start {|http| start {|http|
http.set_debug_output($stderr)
res = http.get('/') res = http.get('/')
http.keep_alive_timeout = 1 http.keep_alive_timeout = 1
assert_kind_of Net::HTTPResponse, res assert_kind_of Net::HTTPResponse, res
@ -594,7 +593,6 @@ class TestNetHTTPKeepAlive < Test::Unit::TestCase
def test_keep_alive_get_auto_retry def test_keep_alive_get_auto_retry
start {|http| start {|http|
http.set_debug_output($stderr)
res = http.get('/') res = http.get('/')
http.keep_alive_timeout = 5 http.keep_alive_timeout = 5
assert_kind_of Net::HTTPResponse, res assert_kind_of Net::HTTPResponse, res