From a353dc60301317b5731684059e614ed095d4a831 Mon Sep 17 00:00:00 2001 From: ThibG Date: Sun, 2 Jun 2019 18:08:26 +0200 Subject: [PATCH] Fix NotifyService test with regards to reblogs (#10928) Fixes #10890 --- spec/services/notify_service_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/services/notify_service_spec.rb b/spec/services/notify_service_spec.rb index a387d9407..440018ac9 100644 --- a/spec/services/notify_service_spec.rb +++ b/spec/services/notify_service_spec.rb @@ -105,7 +105,7 @@ RSpec.describe NotifyService, type: :service do end it 'shows reblogs when disabled' do - recipient.follow!(sender, reblogs: true) + recipient.follow!(sender, reblogs: false) is_expected.to change(Notification, :count) end end