about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-02-18 16:54:30 -0500
committerGitHub <noreply@github.com>2023-02-19 06:54:30 +0900
commit08289a38fa787694cb1c94292bd60b119a906315 (patch)
tree1eafb8d320e5407e0d12a90a43a9091061ec769c /spec
parent5069769cbe7295268e8b87ce34fa0a753bfbb233 (diff)
Autofix Rubocop Style/TrailingCommaInArrayLiteral (#23692)
Diffstat (limited to 'spec')
-rw-r--r--spec/helpers/jsonld_helper_spec.rb2
-rw-r--r--spec/lib/extractor_spec.rb2
-rw-r--r--spec/services/activitypub/process_account_service_spec.rb2
-rw-r--r--spec/services/activitypub/process_collection_service_spec.rb12
-rw-r--r--spec/workers/activitypub/move_distribution_worker_spec.rb2
5 files changed, 10 insertions, 10 deletions
diff --git a/spec/helpers/jsonld_helper_spec.rb b/spec/helpers/jsonld_helper_spec.rb
index 744a14f26..debee17f0 100644
--- a/spec/helpers/jsonld_helper_spec.rb
+++ b/spec/helpers/jsonld_helper_spec.rb
@@ -113,7 +113,7 @@ describe JsonLdHelper do
             {
               'type' => 'Mention',
               'href' => ['foo'],
-            }
+            },
           ],
         },
         'signature' => {
diff --git a/spec/lib/extractor_spec.rb b/spec/lib/extractor_spec.rb
index 9c9f5ef04..560617ed7 100644
--- a/spec/lib/extractor_spec.rb
+++ b/spec/lib/extractor_spec.rb
@@ -20,7 +20,7 @@ describe Extractor do
       text = '@screen_name'
       extracted = Extractor.extract_mentions_or_lists_with_indices(text)
       expect(extracted).to eq [
-        { screen_name: 'screen_name', indices: [0, 12] }
+        { screen_name: 'screen_name', indices: [0, 12] },
       ]
     end
 
diff --git a/spec/services/activitypub/process_account_service_spec.rb b/spec/services/activitypub/process_account_service_spec.rb
index 8e6ed178e..d0af7de76 100644
--- a/spec/services/activitypub/process_account_service_spec.rb
+++ b/spec/services/activitypub/process_account_service_spec.rb
@@ -173,7 +173,7 @@ RSpec.describe ActivityPub::ProcessAccountService, type: :service do
               type: 'Mention',
               href: "https://foo.test/users/#{i + 1}",
               name: "@user#{i + 1}",
-            }
+            },
           ],
           to: ['as:Public', "https://foo.test/users/#{i + 1}"],
         }.with_indifferent_access
diff --git a/spec/services/activitypub/process_collection_service_spec.rb b/spec/services/activitypub/process_collection_service_spec.rb
index 0fa5321bc..fbfa6d6c6 100644
--- a/spec/services/activitypub/process_collection_service_spec.rb
+++ b/spec/services/activitypub/process_collection_service_spec.rb
@@ -107,17 +107,17 @@ RSpec.describe ActivityPub::ProcessCollectionService, type: :service do
             '@context': [
               'https://www.w3.org/ns/activitystreams',
               nil,
-              { object: 'https://www.w3.org/ns/activitystreams#object' }
+              { object: 'https://www.w3.org/ns/activitystreams#object' },
             ],
             id: 'https://example.com/users/bob/fake-status/activity',
             type: 'Create',
             actor: 'https://example.com/users/bob',
             published: '2022-01-22T15:00:00Z',
             to: [
-              'https://www.w3.org/ns/activitystreams#Public'
+              'https://www.w3.org/ns/activitystreams#Public',
             ],
             cc: [
-              'https://example.com/users/bob/followers'
+              'https://example.com/users/bob/followers',
             ],
             signature: {
               type: 'RsaSignature2017',
@@ -140,10 +140,10 @@ RSpec.describe ActivityPub::ProcessCollectionService, type: :service do
               url: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ&feature=puck-was-here',
               attributedTo: 'https://example.com/users/bob',
               to: [
-                'https://www.w3.org/ns/activitystreams#Public'
+                'https://www.w3.org/ns/activitystreams#Public',
               ],
               cc: [
-                'https://example.com/users/bob/followers'
+                'https://example.com/users/bob/followers',
               ],
               sensitive: false,
               atomUri: 'https://example.com/users/bob/fake-status',
@@ -166,7 +166,7 @@ RSpec.describe ActivityPub::ProcessCollectionService, type: :service do
                 {
                   '@value': '<p>hello world</p>',
                   '@language': 'en',
-                }
+                },
               ],
               'https://www.w3.org/ns/activitystreams#published': {
                 '@type': 'http://www.w3.org/2001/XMLSchema#dateTime',
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