diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2016-10-08 15:31:26 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2016-10-08 15:31:26 +0800 |
commit | 720968cc8799f665f4f4392e80bf8dfe88fdd69b (patch) | |
tree | 2b1f4eb048ec17a1b218747c06d4d3dea7b065b3 /spec | |
parent | 355ffec76314c0d5688460e51ff22b604333d0bc (diff) | |
download | gitlab-ce-720968cc8799f665f4f4392e80bf8dfe88fdd69b.tar.gz |
Fix tests for subject updates
Diffstat (limited to 'spec')
-rw-r--r-- | spec/services/ci/send_pipeline_notification_service_spec.rb | 4 |
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 |