summaryrefslogtreecommitdiff
path: root/spec/models/notification_recipient_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/notification_recipient_spec.rb')
-rw-r--r--spec/models/notification_recipient_spec.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/models/notification_recipient_spec.rb b/spec/models/notification_recipient_spec.rb
index 8105262aada..068166ebb0d 100644
--- a/spec/models/notification_recipient_spec.rb
+++ b/spec/models/notification_recipient_spec.rb
@@ -57,16 +57,6 @@ RSpec.describe NotificationRecipient do
it 'returns false' do
expect(recipient.notifiable?).to eq(false)
end
-
- context 'when block_emails_with_failures is disabled' do
- before do
- stub_feature_flags(block_emails_with_failures: false)
- end
-
- it 'returns true' do
- expect(recipient.notifiable?).to eq(true)
- end
- end
end
context 'with temporary failures' do
@@ -77,16 +67,6 @@ RSpec.describe NotificationRecipient do
it 'returns false' do
expect(recipient.notifiable?).to eq(false)
end
-
- context 'when block_emails_with_failures is disabled' do
- before do
- stub_feature_flags(block_emails_with_failures: false)
- end
-
- it 'returns true' do
- expect(recipient.notifiable?).to eq(true)
- end
- end
end
end
end