diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-18 16:54:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 06:54:30 +0900 |
commit | 08289a38fa787694cb1c94292bd60b119a906315 (patch) | |
tree | 1eafb8d320e5407e0d12a90a43a9091061ec769c /spec/lib | |
parent | 5069769cbe7295268e8b87ce34fa0a753bfbb233 (diff) |
Autofix Rubocop Style/TrailingCommaInArrayLiteral (#23692)
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/extractor_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/extractor_spec.rb b/spec/lib/extractor_spec.rb index 9c9f5ef04..560617ed7 100644 --- a/spec/lib/extractor_spec.rb +++ b/spec/lib/extractor_spec.rb @@ -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 |