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

Commit f0b1d0d

Browse files
authored
Merge pull request #3124 from rspec/fix-build
Fix specs for ruby head.
2 parents 87fb8b5 + d02e1b4 commit f0b1d0d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/rspec/core/drb.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def add_full_description(argv)
9191
def add_filter(argv, name, hash)
9292
hash.each_pair do |k, v|
9393
next if CONDITIONAL_FILTERS.include?(k)
94-
tag = name == :inclusion ? k.to_s : "~#{k}".dup
94+
tag = name == :inclusion ? k.to_s.dup : "~#{k}".dup
9595
tag << ":#{v}" if v.is_a?(String)
9696
argv << "--tag" << tag
9797
end unless hash.empty?

spec/integration/spec_file_load_errors_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ def foo
222222
While loading ./broken_file a `raise SyntaxError` occurred, RSpec will now quit.
223223
EOS
224224

225-
# A fix was backported to 3.2.3
225+
# There was a fix was backported in 3.2.3, but syntax changed in 3.4.0 in terms of line endings
226226
if RUBY_VERSION > '3.2.2'
227-
expect(formatted_output).to include unindent(<<-EOS)
227+
expect(formatted_output.gsub(/\n\n/, "\n")).to include unindent(<<-EOS)
228228
SyntaxError:
229229
--> ./tmp/aruba/broken_file.rb
230230
Unmatched keyword, missing `end' ?

0 commit comments

Comments
 (0)