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

Commit a628b38

Browse files
committed
Specs fixed on windows via GHA
1 parent 3d6f4f6 commit a628b38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/rspec/support/differ_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def differ_ivars
155155
expect(diff).to be_diffed_as(expected_diff)
156156
end
157157

158-
it 'uses the default external encoding when the two strings have incompatible encodings', :failing_on_appveyor do
158+
it 'uses the default external encoding when the two strings have incompatible encodings' do
159159
expected = "Tu avec carte {count} item has\n"
160160
actual = "Tu avec carté {count} itém has\n".encode('UTF-16LE')
161161
expected_diff = "\n@@ #{one_line_header} @@\n-Tu avec carte {count} item has\n+Tu avec carté {count} itém has\n"
@@ -312,7 +312,7 @@ def inspect; "<BrokenObject>"; end
312312
end
313313
end
314314

315-
it 'outputs unified diff message of two hashes with differing encoding', :failing_on_appveyor do
315+
it 'outputs unified diff message of two hashes with differing encoding' do
316316
expected_diff = dedent(<<-"EOD")
317317
|
318318
|@@ #{one_line_header} @@
@@ -325,7 +325,7 @@ def inspect; "<BrokenObject>"; end
325325
expect(diff).to be_diffed_as(expected_diff)
326326
end
327327

328-
it 'outputs unified diff message of two hashes with encoding different to key encoding', :failing_on_appveyor do
328+
it 'outputs unified diff message of two hashes with encoding different to key encoding' do
329329
expected_diff = dedent(<<-"EOD")
330330
|
331331
|@@ #{one_line_header} @@

0 commit comments

Comments
 (0)