[ruby/net-http] Removed server-side log test

https://github.com/ruby/net-http/commit/9c16c383ce
This commit is contained in:
Hiroshi SHIBATA 2024-07-10 12:10:06 +09:00 коммит произвёл git
Родитель 5e6f04abc8
Коммит 87a45af105
1 изменённых файлов: 0 добавлений и 8 удалений

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

@ -240,14 +240,6 @@ class TestNetHTTPS < Test::Unit::TestCase
http.request_get("/") {|res| }
}
assert_match(/certificate verify failed/, ex.message)
unless /mswin|mingw/ =~ RUBY_PLATFORM
# on Windows, Errno::ECONNRESET will be raised, and it'll be eaten by
# WEBrick
@log_tester = lambda {|log|
assert_equal(1, log.length)
assert_match(/ERROR OpenSSL::SSL::SSLError:/, log[0])
}
end
end
def test_identity_verify_failure