Skip to content

Commit 7f2e009

Browse files
authored
Merge pull request #961 from yahonda/replace-ruby35-with-ruby40
Replace Ruby 3.5 with Ruby 4.0
2 parents 33149ac + 5a50a4d commit 7f2e009

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/openssl/test_ssl.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2325,12 +2325,12 @@ def test_export_keying_material
23252325
end
23262326
end
23272327

2328-
# OpenSSL::Buffering requires $/ accessible from non-main Ractors (Ruby 3.5)
2328+
# OpenSSL::Buffering requires $/ accessible from non-main Ractors (Ruby 4.0)
23292329
# https://bugs.ruby-lang.org/issues/21109
23302330
#
23312331
# Hangs on Windows
23322332
# https://bugs.ruby-lang.org/issues/21537
2333-
if respond_to?(:ractor) && RUBY_VERSION >= "3.5" && RUBY_PLATFORM !~ /mswin|mingw/
2333+
if respond_to?(:ractor) && RUBY_VERSION >= "4.0" && RUBY_PLATFORM !~ /mswin|mingw/
23342334
ractor
23352335
def test_ractor_client
23362336
start_server { |port|

0 commit comments

Comments
 (0)