0
0
Fork 0

Autofix Rubocop Style/MethodCallWithoutArgsParentheses (#23645)

This commit is contained in:
Nick Schonning 2023-02-17 07:36:14 -05:00 committed by GitHub
parent 4a1bad2fd8
commit 37914c8757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 14 deletions

View file

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