Skip to content

Commit bbef46d

Browse files
committed
Fix warning
1 parent d05c32d commit bbef46d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/test_runner.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
require "set"
66

77
IS_LATEST_RUBY = Gem::Version.new(RUBY_VERSION).yield_self do |ruby_version|
8-
Gem::Version.new('3.3.0') <= ruby_version && ruby_version < Gem::Version.new('3.4.0')
8+
Gem::Version.new('3.4.0') <= ruby_version && ruby_version < Gem::Version.new('3.5.0')
99
end
1010

1111
unless IS_LATEST_RUBY
1212
unless ENV["CI"]
13-
STDERR.puts "⚠️⚠️⚠️⚠️ stdlib test assumes Ruby 3.3 but RUBY_VERSION==#{RUBY_VERSION} ⚠️⚠️⚠️⚠️"
13+
STDERR.puts "⚠️⚠️⚠️⚠️ stdlib test assumes Ruby 3.4 but RUBY_VERSION==#{RUBY_VERSION} ⚠️⚠️⚠️⚠️"
1414
end
1515
end
1616

0 commit comments

Comments
 (0)