diff options
author | NARUSE, Yui <[email protected]> | 2024-02-03 22:35:44 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-02-07 10:59:59 +0900 |
commit | 64b6a018a38f200c957fdbbe7d0cbe0e64781c9f () | |
tree | 70c7ebd39b40f6e560cc1b415e30ae18302f1d71 /test/net | |
parent | e34505c631349f8f8b548953d392191b96e9d29c (diff) |
Fix test session reuse but expire (#9824)
* OpenSSL 3.2.1 30 Jan 2024 is also broken Import 45064610725ddd81a5ea3775da35aa46985bc789 from ruby_3_3 branch tentatively.
-rw-r--r-- | test/net/http/test_https.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -167,7 +167,7 @@ class TestNetHTTPS < Test::Unit::TestCase def test_session_reuse_but_expire # FIXME: The new_session_cb is known broken for clients in OpenSSL 1.1.0h. omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 1.1.0h') - omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 3.2.0') http = Net::HTTP.new(HOST, config("port")) http.use_ssl = true |