Autofix Rubocop Style/MethodCallWithoutArgsParentheses (#23645)
This commit is contained in:
parent
4a1bad2fd8
commit
37914c8757
|
@ -3432,14 +3432,6 @@ Style/MapToHash:
|
|||
Exclude:
|
||||
- 'app/models/status.rb'
|
||||
|
||||
# Offense count: 6
|
||||
# This cop supports safe autocorrection (--autocorrect).
|
||||
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
||||
Style/MethodCallWithoutArgsParentheses:
|
||||
Exclude:
|
||||
- 'spec/services/activitypub/process_collection_service_spec.rb'
|
||||
- 'spec/services/fetch_resource_service_spec.rb'
|
||||
|
||||
# Offense count: 17
|
||||
# This cop supports unsafe autocorrection (--autocorrect-all).
|
||||
# Configuration parameters: EnforcedStyle.
|
||||
|
|
|
@ -212,8 +212,8 @@ RSpec.describe ActivityPub::ProcessCollectionService, type: :service do
|
|||
'id' => 'https://example.com/users/bob/fake-status'
|
||||
)
|
||||
),
|
||||
anything(),
|
||||
anything()
|
||||
anything,
|
||||
anything
|
||||
)
|
||||
|
||||
expect(ActivityPub::Activity).not_to receive(:factory).with(
|
||||
|
@ -222,8 +222,8 @@ RSpec.describe ActivityPub::ProcessCollectionService, type: :service do
|
|||
'content' => '<p>puck was here</p>'
|
||||
)
|
||||
),
|
||||
anything(),
|
||||
anything()
|
||||
anything,
|
||||
anything
|
||||
)
|
||||
|
||||
subject.call(json, forwarder)
|
||||
|
|
|
@ -21,7 +21,7 @@ RSpec.describe FetchResourceService, type: :service do
|
|||
|
||||
context 'when OpenSSL::SSL::SSLError is raised' do
|
||||
before do
|
||||
request = double()
|
||||
request = double
|
||||
allow(Request).to receive(:new).and_return(request)
|
||||
allow(request).to receive(:add_headers)
|
||||
allow(request).to receive(:on_behalf_of)
|
||||
|
@ -33,7 +33,7 @@ RSpec.describe FetchResourceService, type: :service do
|
|||
|
||||
context 'when HTTP::ConnectionError is raised' do
|
||||
before do
|
||||
request = double()
|
||||
request = double
|
||||
allow(Request).to receive(:new).and_return(request)
|
||||
allow(request).to receive(:add_headers)
|
||||
allow(request).to receive(:on_behalf_of)
|
||||
|
|
Loading…
Reference in New Issue