Commit 4d8a2bc9 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Fix tests because now we don't convert values

parent 8e2ea26c
......@@ -10,9 +10,9 @@ describe Gitlab::Serialize::Ci::Variables do
{ key: 'wee', value: 1, public: false }]
end
it 'converts key and values into strings' do
it 'converts keys into strings' do
is_expected.to eq([
{ key: 'key', value: 'value', public: true },
{ key: 'wee', value: '1', public: false }])
{ key: 'wee', value: 1, public: false }])
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment