summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/services/ci/send_pipeline_notification_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/ci/send_pipeline_notification_service_spec.rb b/spec/services/ci/send_pipeline_notification_service_spec.rb
index f6cf1039287..6a32357b72c 100644
--- a/spec/services/ci/send_pipeline_notification_service_spec.rb
+++ b/spec/services/ci/send_pipeline_notification_service_spec.rb
@@ -32,14 +32,14 @@ describe Ci::SendPipelineNotificationService, services: true do
context 'with success pipeline' do
let(:status) { 'success' }
- let(:email_subject) { 'Pipeline succeeded for' }
+ let(:email_subject) { "Pipeline ##{pipeline.id} has succeeded" }
it_behaves_like 'sending emails'
end
context 'with failed pipeline' do
let(:status) { 'failed' }
- let(:email_subject) { 'Pipeline failed for' }
+ let(:email_subject) { "Pipeline ##{pipeline.id} has failed" }
it_behaves_like 'sending emails'
end