Skip to content

Commit a1bdc36

Browse files
committed
Use an exclusive range for ruby_version_is
1 parent 1bc57b5 commit a1bdc36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/ruby/language/numbered_parameters_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
proc { _2 }.parameters.should == [[:opt, :_1], [:opt, :_2]]
9191
end
9292

93-
ruby_version_is "".."3.4" do
93+
ruby_version_is ""..."3.5" do
9494
it "affects binding local variables" do
9595
-> { _1; binding.local_variables }.call("a").should == [:_1]
9696
-> { _2; binding.local_variables }.call("a", "b").should == [:_1, :_2]

0 commit comments

Comments
 (0)