diff --git a/spec/models/ci/pipeline_spec.rb b/spec/models/ci/pipeline_spec.rb
index 6ea712ae1b3b67b65dde278d35819d26ae2598ef..85820a9dc5729433c7d51ac3170c8f7487025797 100644
--- a/spec/models/ci/pipeline_spec.rb
+++ b/spec/models/ci/pipeline_spec.rb
@@ -551,7 +551,7 @@ describe Ci::Pipeline, models: true do
 
     shared_examples 'not sending any notification' do
       it 'does not send any email' do
-        should_email_no_one
+        should_not_email_anyone
       end
     end
 
diff --git a/spec/services/notification_service_spec.rb b/spec/services/notification_service_spec.rb
index 84c22631c67804e86d95f1e07453a5c19eeedc66..8ce35354c22fe1e34fd76fab5ab25677f4229a4b 100644
--- a/spec/services/notification_service_spec.rb
+++ b/spec/services/notification_service_spec.rb
@@ -17,7 +17,7 @@ describe NotificationService, services: true do
 
     it 'sends no emails when no new mentions are present' do
       send_notifications
-      should_email_no_one
+      should_not_email_anyone
     end
 
     it 'emails new mentions with a watch level higher than participant' do
@@ -27,7 +27,7 @@ describe NotificationService, services: true do
 
     it 'does not email new mentions with a watch level equal to or less than participant' do
       send_notifications(@u_participating, @u_mentioned)
-      should_email_no_one
+      should_not_email_anyone
     end
   end
 
diff --git a/spec/support/email_helpers.rb b/spec/support/email_helpers.rb
index caa6ab1345a609e0acc689372fc201d6ccb81586..36f5a2d5975bfc81851cf4faa35309686e1f8795 100644
--- a/spec/support/email_helpers.rb
+++ b/spec/support/email_helpers.rb
@@ -23,7 +23,7 @@ module EmailHelpers
     expect(sent_to_user?(user, recipients)).to be_falsey
   end
 
-  def should_email_no_one
+  def should_not_email_anyone
     expect(ActionMailer::Base.deliveries).to be_empty
   end