Browse Source

Autofix Rubocop Lint/ParenthesesAsGroupedExpression (#23682)

closed-social-glitch-2
Nick Schonning 1 year ago
committed by GitHub
parent
commit
a7db0b41cd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 15 deletions
  1. +0
    -9
      .rubocop_todo.yml
  2. +1
    -1
      spec/controllers/api/v1/admin/accounts_controller_spec.rb
  3. +1
    -1
      spec/controllers/api/v2/admin/accounts_controller_spec.rb
  4. +1
    -1
      spec/lib/activitypub/activity/flag_spec.rb
  5. +3
    -3
      spec/models/import_spec.rb

+ 0
- 9
.rubocop_todo.yml View File

@ -289,15 +289,6 @@ Lint/OrAssignmentToConstant:
Exclude:
- 'lib/sanitize_ext/sanitize_config.rb'
# Offense count: 6
# This cop supports safe autocorrection (--autocorrect).
Lint/ParenthesesAsGroupedExpression:
Exclude:
- 'spec/controllers/api/v1/admin/accounts_controller_spec.rb'
- 'spec/controllers/api/v2/admin/accounts_controller_spec.rb'
- 'spec/lib/activitypub/activity/flag_spec.rb'
- 'spec/models/import_spec.rb'
# Offense count: 3
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: IgnoreEmptyBlocks, AllowUnusedKeywordArguments.

+ 1
- 1
spec/controllers/api/v1/admin/accounts_controller_spec.rb View File

@ -65,7 +65,7 @@ RSpec.describe Api::V1::Admin::AccountsController, type: :controller do
it "returns the correct accounts (#{expected_results.inspect})" do
json = body_as_json
expect(json.map { |a| a[:id].to_i }).to eq (expected_results.map { |symbol| send(symbol).id })
expect(json.map { |a| a[:id].to_i }).to eq(expected_results.map { |symbol| send(symbol).id })
end
end
end

+ 1
- 1
spec/controllers/api/v2/admin/accounts_controller_spec.rb View File

@ -65,7 +65,7 @@ RSpec.describe Api::V2::Admin::AccountsController, type: :controller do
it "returns the correct accounts (#{expected_results.inspect})" do
json = body_as_json
expect(json.map { |a| a[:id].to_i }).to eq (expected_results.map { |symbol| send(symbol).id })
expect(json.map { |a| a[:id].to_i }).to eq(expected_results.map { |symbol| send(symbol).id })
end
end
end

+ 1
- 1
spec/lib/activitypub/activity/flag_spec.rb View File

@ -110,7 +110,7 @@ RSpec.describe ActivityPub::Activity::Flag do
describe '#perform with a defined uri' do
subject { described_class.new(json, sender) }
let (:flag_id) { 'http://example.com/reports/1' }
let(:flag_id) { 'http://example.com/reports/1' }
before do
subject.perform

+ 3
- 3
spec/models/import_spec.rb View File

@ -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

Loading…
Cancel
Save