From 785852eb15cafdadd4bc80bed8c002cd2d2e33fa Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Mon, 28 Sep 2020 17:17:04 +0200 Subject: [PATCH] Fix glitch-soc specific test --- spec/models/concerns/account_interactions_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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