about summary refs log tree commit diff
path: root/spec/controllers/api/activitypub/outbox_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/api/activitypub/outbox_controller_spec.rb')
-rw-r--r--spec/controllers/api/activitypub/outbox_controller_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/controllers/api/activitypub/outbox_controller_spec.rb b/spec/controllers/api/activitypub/outbox_controller_spec.rb
index 55fb9b509..9a47dde6b 100644
--- a/spec/controllers/api/activitypub/outbox_controller_spec.rb
+++ b/spec/controllers/api/activitypub/outbox_controller_spec.rb
@@ -19,7 +19,7 @@ RSpec.describe Api::Activitypub::OutboxController, type: :controller do
         Status.create!(account: user.account, text: 'Hello world', visibility: :unlisted)
         Status.create!(account: user.account, text: 'Hello world', visibility: :direct)
 
-        get :show, id: user.account.id
+        get :show, params: { id: user.account.id }
       end
 
       it 'returns http success' do
@@ -59,7 +59,7 @@ RSpec.describe Api::Activitypub::OutboxController, type: :controller do
 
       describe 'first page' do
         before do
-          get :show, id: user.account.id
+          get :show, params: { id: user.account.id }
         end
 
         it 'returns http success' do