Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 865ea3a

Browse files
committed
Fix a wrong version description: "2.6 or before" -> "2.7 or before"
1 parent 21fdd06 commit 865ea3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/rspec/mocks/argument_matchers_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def ==(other)
396396
end.to fail_with(/expected: \(\{(:a=>\"a\", :b=>\"b\"|:b=>\"b\", :a=>\"a\")\}\)/)
397397
end
398398
else
399-
it "matches against a hash submitted as a positional argument and received as keyword arguments in Ruby 2.6 or before" do
399+
it "matches against a hash submitted as a positional argument and received as keyword arguments in Ruby 2.7 or before" do
400400
opts = {:a => "a", :b => "b"}
401401
expect(a_double).to receive(:random_call).with(:a => "a", :b => "b")
402402
a_double.random_call(opts)

0 commit comments

Comments
 (0)