diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-18 16:54:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 06:54:30 +0900 |
commit | 08289a38fa787694cb1c94292bd60b119a906315 (patch) | |
tree | 1eafb8d320e5407e0d12a90a43a9091061ec769c /spec/workers | |
parent | 5069769cbe7295268e8b87ce34fa0a753bfbb233 (diff) |
Autofix Rubocop Style/TrailingCommaInArrayLiteral (#23692)
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/activitypub/move_distribution_worker_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/activitypub/move_distribution_worker_spec.rb b/spec/workers/activitypub/move_distribution_worker_spec.rb index 57941065a..482fa9db4 100644 --- a/spec/workers/activitypub/move_distribution_worker_spec.rb +++ b/spec/workers/activitypub/move_distribution_worker_spec.rb @@ -16,7 +16,7 @@ describe ActivityPub::MoveDistributionWorker do it 'delivers to followers and known blockers' do expect_push_bulk_to_match(ActivityPub::DeliveryWorker, [ [kind_of(String), migration.account.id, 'http://example.com'], - [kind_of(String), migration.account.id, 'http://example2.com'] + [kind_of(String), migration.account.id, 'http://example2.com'], ]) subject.perform(migration.id) end |