Skip to content

Commit 7f04cd3

Browse files
authored
Merge pull request #468 from koic/fix_hash_except_ruby_2_7
Fix a `NoMethodError` on Ruby 2.7 caused by `Hash#except`
2 parents 4147b9b + 74fd99a commit 7f04cd3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ task :conformance do |t|
3030
options[:verbose] = true if ENV["VERBOSE"]
3131

3232
Conformance::ServerRunner.new(**options).run
33-
Conformance::ClientRunner.new(**options.except(:port)).run
33+
Conformance::ClientRunner.new(**options.reject { |key, _value| key == :port }).run
3434
end
3535

3636
desc "List available conformance scenarios"

0 commit comments

Comments
 (0)