diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-17 22:00:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 04:00:05 +0100 |
commit | a7db0b41cdb2e7ab50e638ec546b2c5dd2d633c7 (patch) | |
tree | e43a303679764952cc76f16a29495d479ee73115 /spec/models | |
parent | e5cf23cf3a45cee0abe2e3ad4de1b8c03bcb6f73 (diff) |
Autofix Rubocop Lint/ParenthesesAsGroupedExpression (#23682)
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/import_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/import_spec.rb b/spec/models/import_spec.rb index a5eec1722..4280b3237 100644 --- a/spec/models/import_spec.rb +++ b/spec/models/import_spec.rb @@ -1,9 +1,9 @@ require 'rails_helper' RSpec.describe Import, type: :model do - let (:account) { Fabricate(:account) } - let (:type) { 'following' } - let (:data) { attachment_fixture('imports.txt') } + let(:account) { Fabricate(:account) } + let(:type) { 'following' } + let(:data) { attachment_fixture('imports.txt') } describe 'validations' do it 'has a valid parameters' do |