Fix `Lint/Void` cop (#25922)

local
Matt Jankowski 10 months ago committed by GitHub
parent a5842df123
commit 1cceb62afd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .rubocop_todo.yml
  2. 5
      spec/services/resolve_account_service_spec.rb

@ -127,12 +127,6 @@ Lint/UselessAssignment:
- 'spec/services/resolve_url_service_spec.rb'
- 'spec/views/statuses/show.html.haml_spec.rb'
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: CheckForMethodsWithNoSideEffects.
Lint/Void:
Exclude:
- 'spec/services/resolve_account_service_spec.rb'
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 150

@ -209,11 +209,6 @@ RSpec.describe ResolveAccountService, type: :service do
fail_occurred = false
return_values = Concurrent::Array.new
# Preload classes that throw circular dependency errors in threads
Account
TagManager
DomainBlock
threads = Array.new(5) do
Thread.new do
true while wait_for_start

Loading…
Cancel
Save