diff options
| author | Yasuo Honda <yasuo.honda@gmail.com> | 2025-11-11 21:49:36 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2025-11-11 13:08:02 +0000 |
| commit | ca2fffd3a7c6cf138fd60e73320cfc8a87c5ff35 (patch) | |
| tree | 43d7b206631b60b3a671ff07468349f9e7bc0c34 | |
| parent | 48dce7874fcb571765635b32fa6a3e3a12e228f8 (diff) | |
[ruby/openssl] Replace Ruby 3.5 with Ruby 4.0
This commit updates the Ruby version in the error message to follow the commit in Ruby master branch.
https://github.com/ruby/ruby/commit/6d81969b475262aba251e99b518181bdf7c5a523
https://github.com/ruby/openssl/commit/5a50a4d793
| -rw-r--r-- | test/openssl/test_ssl.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/openssl/test_ssl.rb b/test/openssl/test_ssl.rb index e700e53e3b..5082dadd1b 100644 --- a/test/openssl/test_ssl.rb +++ b/test/openssl/test_ssl.rb @@ -2325,12 +2325,12 @@ class OpenSSL::TestSSL < OpenSSL::SSLTestCase end end - # OpenSSL::Buffering requires $/ accessible from non-main Ractors (Ruby 3.5) + # OpenSSL::Buffering requires $/ accessible from non-main Ractors (Ruby 4.0) # https://bugs.ruby-lang.org/issues/21109 # # Hangs on Windows # https://bugs.ruby-lang.org/issues/21537 - if respond_to?(:ractor) && RUBY_VERSION >= "3.5" && RUBY_PLATFORM !~ /mswin|mingw/ + if respond_to?(:ractor) && RUBY_VERSION >= "4.0" && RUBY_PLATFORM !~ /mswin|mingw/ ractor def test_ractor_client start_server { |port| |
