summaryrefslogtreecommitdiff
path: root/test/net/http
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 16:44:56 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 16:44:56 +0000
commitb39132e993f7744553943453d912d1efd8ce4ffa (patch)
tree19729cc952233ee303f2c54a9c07001bf820d524 /test/net/http
parentfacccd3129691825b79e4405ddf12d2eff2f9e96 (diff)
Revert "ignore server side error"
This reverts commit r60314. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net/http')
-rw-r--r--test/net/http/test_https.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/net/http/test_https.rb b/test/net/http/test_https.rb
index 5aaea40139..5a17cc8186 100644
--- a/test/net/http/test_https.rb
+++ b/test/net/http/test_https.rb
@@ -212,7 +212,7 @@ class TestNetHTTPS < Test::Unit::TestCase
http.verify_callback = Proc.new do |preverify_ok, store_ctx|
true
end
- @log_tester = lambda {|_| }
+ @log_tester = lambda {|log| assert_not_equal([], log) }
ex = assert_raise(OpenSSL::SSL::SSLError){
http.request_get("/") {|res| }
}