Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOswaldo Ferreira <oswaldo@gitlab.com>2018-01-12 19:59:55 +0300
committerRémy Coutable <remy@rymai.me>2018-01-15 13:23:07 +0300
commit74ee812513d5c64092fb756d847901045b5d49be (patch)
treee5211cfd161a11bb522f4526eca7b7ea7428e60d
parent3073b51762a73bd28057f0ad8498b7fb15eb27f3 (diff)
Make ruby lint happy
-rw-r--r--spec/lib/gitlab/ci/config/entry/key_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/ci/config/entry/key_spec.rb b/spec/lib/gitlab/ci/config/entry/key_spec.rb
index 846f5f44470..3cbf19bea8b 100644
--- a/spec/lib/gitlab/ci/config/entry/key_spec.rb
+++ b/spec/lib/gitlab/ci/config/entry/key_spec.rb
@@ -10,7 +10,7 @@ describe Gitlab::Ci::Config::Entry::Key do
end
it 'reports errors with config value' do
- expect(entry.errors).to include 'key config cannot contain the "/" character'
+ expect(entry.errors).to include 'key config cannot contain the "/" character'
end
end
@@ -20,7 +20,7 @@ describe Gitlab::Ci::Config::Entry::Key do
end
it 'reports errors with config value' do
- expect(entry.errors).to include 'key config cannot be "." or ".."'
+ expect(entry.errors).to include 'key config cannot be "." or ".."'
end
end