]> cat aescling's git repositories - mastodon.git/commitdiff
Fix glitch-soc specific test
authorThibaut Girka <thib@sitedethib.com>
Mon, 28 Sep 2020 15:17:04 +0000 (17:17 +0200)
committerThibaut Girka <thib@sitedethib.com>
Mon, 28 Sep 2020 15:56:16 +0000 (17:56 +0200)
spec/models/concerns/account_interactions_spec.rb

index 68eb9c027e6c10938e3a58ed88f930e149380618..48b44e58dfcadad6af4448d7c1611cf886bd01c1 100644 (file)
@@ -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