about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2020-09-28 17:17:04 +0200
committerThibaut Girka <thib@sitedethib.com>2020-09-28 17:56:16 +0200
commit785852eb15cafdadd4bc80bed8c002cd2d2e33fa (patch)
tree57bed008d9f8bc456c17cd3cce7659cf89f584fa /spec
parentdadec533ce82aa30c78d58dba8f668fb0558f8bd (diff)
Fix glitch-soc specific test
Diffstat (limited to 'spec')
-rw-r--r--spec/models/concerns/account_interactions_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/concerns/account_interactions_spec.rb b/spec/models/concerns/account_interactions_spec.rb
index 68eb9c027..48b44e58d 100644
--- a/spec/models/concerns/account_interactions_spec.rb
+++ b/spec/models/concerns/account_interactions_spec.rb
@@ -21,7 +21,7 @@ describe AccountInteractions do
     context 'account with Follow but with reblogs disabled' do
       it 'returns { target_account_id => { reblogs: false } }' do
         Fabricate(:follow, account: account, target_account: target_account, show_reblogs: false)
-        is_expected.to eq(target_account_id => { reblogs: false })
+        is_expected.to eq(target_account_id => { reblogs: false, notify: false })
       end
     end