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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-03-13 16:01:48 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-03-13 16:01:48 +0300
commit937e7f9e9669d4939cd6c5055a90339ff79d216b (patch)
tree5f794b0f892fbbc117101097b805c2da5dcac45e /spec/lib/gitlab/ci/variables/collection_spec.rb
parent0cf0a7a898f06fc2a154683e76dc9199832c01c8 (diff)
Make predefined variables in a collection public by default
Diffstat (limited to 'spec/lib/gitlab/ci/variables/collection_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/variables/collection_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/ci/variables/collection_spec.rb b/spec/lib/gitlab/ci/variables/collection_spec.rb
index c4b2df7dede..9ee39d40625 100644
--- a/spec/lib/gitlab/ci/variables/collection_spec.rb
+++ b/spec/lib/gitlab/ci/variables/collection_spec.rb
@@ -58,7 +58,7 @@ describe Gitlab::Ci::Variables::Collection do
collection = described_class.new([{ key: 'TEST', value: 1 }])
expect(collection.to_runner_variables)
- .to eq [{ key: 'TEST', value: 1, public: false }]
+ .to eq [{ key: 'TEST', value: 1, public: true }]
end
end
end