summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-11-26 01:18:48 +0900
committerusa <usa@garbagecollect.jp>2024-01-11 17:59:14 +0900
commit2b608349bbd84dd01bffc92aaaced15ff5823bd6 (patch)
tree793196fe9e9b789af71061726463d8c50e91d663
parent21a9b182e5fb08cf762d6e4dde9da641251cfc9a (diff)
Omit test_session_reuse_but_expire if OpenSSL 3.2.0ruby_3_1
-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 3278e7fb6d..e95a9abaf3 100644
--- a/test/net/http/test_https.rb
+++ b/test/net/http/test_https.rb
@@ -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 'failing on MinGW' if /mingw/ =~ RUBY_PLATFORM
+ omit if OpenSSL::OPENSSL_LIBRARY_VERSION.include?('OpenSSL 3.2.0')
http = Net::HTTP.new(HOST, config("port"))
http.use_ssl = true