0
0
Fork 0

Autofix Rubocop Style/TrailingCommaInArrayLiteral (#23692)

This commit is contained in:
Nick Schonning 2023-02-18 16:54:30 -05:00 committed by GitHub
parent 5069769cbe
commit 08289a38fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 22 deletions

View file

@ -20,7 +20,7 @@ describe Extractor do
text = '@screen_name'
extracted = Extractor.extract_mentions_or_lists_with_indices(text)
expect(extracted).to eq [
{ screen_name: 'screen_name', indices: [0, 12] }
{ screen_name: 'screen_name', indices: [0, 12] },
]
end