about summary refs log tree commit diff
path: root/spec/controllers/api/activitypub/outbox_controller_spec.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-23 13:10:04 -0400
committerEugen <eugen@zeonfederated.com>2017-04-23 19:10:04 +0200
commit948dd26931f450d42322c32a3eb9d97eccb69d4d (patch)
tree080f8ca1db357134330aa985cce369f8af5716ab /spec/controllers/api/activitypub/outbox_controller_spec.rb
parent55e1e12b7d673aece3cf015360af9fb4252dd7e5 (diff)
Fix deprecation warnings on activitypub controller specs (#2357)
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