summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/config/entry/global_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/ci/config/entry/global_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/config/entry/global_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/ci/config/entry/global_spec.rb b/spec/lib/gitlab/ci/config/entry/global_spec.rb
index 7651f594a4c..c2a46f9f713 100644
--- a/spec/lib/gitlab/ci/config/entry/global_spec.rb
+++ b/spec/lib/gitlab/ci/config/entry/global_spec.rb
@@ -54,9 +54,9 @@ describe Gitlab::Ci::Config::Entry::Global do
it 'sets correct description for nodes' do
expect(global.descendants.first.description)
- .to eq 'Script that will be executed before each job.'
+ .to eq _('Script that will be executed before each job.')
expect(global.descendants.second.description)
- .to eq 'Docker image that will be used to execute jobs.'
+ .to eq _('Docker image that will be used to execute jobs.')
end
describe '#leaf?' do