diff options
author | Mark Chao <mchao@gitlab.com> | 2018-05-26 12:39:20 +0800 |
---|---|---|
committer | Mark Chao <mchao@gitlab.com> | 2018-05-31 23:13:20 +0900 |
commit | 180685be976403bff6e152b2749618d1f8b9b348 (patch) | |
tree | 0fbc7451cb28ae2a00b5cf613369f21848ea801a /spec/mailers | |
parent | de12348ee8534b2a4310c81898e7151dd7616095 (diff) | |
download | gitlab-ce-180685be976403bff6e152b2749618d1f8b9b348.tar.gz |
Fix merge request unmergeable notification email plural interpolation46840-fix-merge-request-unmergeable-email-plural
Diffstat (limited to 'spec/mailers')
-rw-r--r-- | spec/mailers/notify_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/mailers/notify_spec.rb b/spec/mailers/notify_spec.rb index f310a6854d5..69eafbe4bbe 100644 --- a/spec/mailers/notify_spec.rb +++ b/spec/mailers/notify_spec.rb @@ -422,7 +422,7 @@ describe Notify do aggregate_failures do is_expected.to have_referable_subject(merge_request, reply: true) is_expected.to have_body_text(project_merge_request_path(project, merge_request)) - is_expected.to have_body_text('reasons:') + is_expected.to have_body_text('following reasons:') reasons.each do |reason| is_expected.to have_body_text(reason) end |