Skip to content

Commit 51f578e

Browse files
author
Dmitry Kulikov
committed
Fix the specs
1 parent 9752dbf commit 51f578e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/lib/annotate/parser_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module Annotate # rubocop:disable Metrics/ModuleLength
2020
paths = 'foo/bar,baz'
2121
allow(ENV).to receive(:[]=)
2222
Parser.parse([option, paths])
23-
expect(ENV).to have_received(:[]=).with('additional_file_patterns', ['foo/bar', 'baz'])
23+
expect(ENV).to have_received(:[]=).with('additional_file_patterns', 'foo/bar,baz')
2424
end
2525
end
2626
end

0 commit comments

Comments
 (0)