summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/yaml_processor_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/ci/yaml_processor_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/yaml_processor_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/ci/yaml_processor_spec.rb b/spec/lib/gitlab/ci/yaml_processor_spec.rb
index 544e421d571..8289a6b000b 100644
--- a/spec/lib/gitlab/ci/yaml_processor_spec.rb
+++ b/spec/lib/gitlab/ci/yaml_processor_spec.rb
@@ -141,11 +141,11 @@ module Gitlab
context 'when parallel is defined' do
let(:config) do
YAML.dump(rspec: { script: 'rspec',
- parallel: 1 })
+ parallel: 2 })
end
it 'has the attributes' do
- expect(subject[:options][:parallel]).to eq 1
+ expect(subject[:options][:parallel]).to eq 2
end
end
end