fix TrailingCommaInHashLiteral rubocop warning

```
spec/controllers/tags_controller_spec.rb:31:8: C: Style/TrailingCommaInHashLiteral: Avoid comma after the last item of a hash, unless items are split onto multiple lines.
      }, }
       ^
```
This commit is contained in:
Thomas Dziedzic 2019-06-13 08:58:03 -05:00
parent 9473874b80
commit a7f88a7d95
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ describe TagsController do
hotness_mod: 1.5,
privileged: true,
inactive: true,
}, }
} }
tag = Tag.find_by(tag: 'mytag')
expect(tag.description).to eq 'desc'
expect(tag.is_media).to be true