Commit d25c4803 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Fix pipeline build specs related to variables order

parent 7bb0c79b
......@@ -1854,7 +1854,8 @@ describe Ci::Build do
end
allow_any_instance_of(Ci::Pipeline)
.to receive(:predefined_variables) { [pipeline_pre_var] }
.to receive(:predefined_variables)
.and_return([project_pre_var] + [pipeline_pre_var])
end
it do
......
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