summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/external/file/template_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/ci/config/external/file/template_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/config/external/file/template_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/ci/config/external/file/template_spec.rb b/spec/lib/gitlab/ci/config/external/file/template_spec.rb
index 1fb5655309a..8583f676b46 100644
--- a/spec/lib/gitlab/ci/config/external/file/template_spec.rb
+++ b/spec/lib/gitlab/ci/config/external/file/template_spec.rb
@@ -49,7 +49,7 @@ describe Gitlab::Ci::Config::External::File::Template do
it 'should return false' do
expect(subject).not_to be_valid
- expect(subject.error_message).to include('Template file `Template.yml` is not a valid location!')
+ expect(subject.error_message).to include(_('Template file `Template.yml` is not a valid location!'))
end
end
@@ -58,7 +58,7 @@ describe Gitlab::Ci::Config::External::File::Template do
it 'should return false' do
expect(subject).not_to be_valid
- expect(subject.error_message).to include('Included file `I-Do-Not-Have-This-Template.gitlab-ci.yml` is empty or does not exist!')
+ expect(subject.error_message).to include(_('Included file `I-Do-Not-Have-This-Template.gitlab-ci.yml` is empty or does not exist!'))
end
end
end