summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab')
-rw-r--r--spec/lib/gitlab/ci/config/entry/job_spec.rb6
-rw-r--r--spec/lib/gitlab/ci/yaml_processor_spec.rb4
2 files changed, 5 insertions, 5 deletions
diff --git a/spec/lib/gitlab/ci/config/entry/job_spec.rb b/spec/lib/gitlab/ci/config/entry/job_spec.rb
index 718098c364e..f1a2946acda 100644
--- a/spec/lib/gitlab/ci/config/entry/job_spec.rb
+++ b/spec/lib/gitlab/ci/config/entry/job_spec.rb
@@ -147,13 +147,13 @@ describe Gitlab::Ci::Config::Entry::Job do
end
end
- context 'when it is lower than one' do
- let(:config) { { parallel: 0 } }
+ context 'when it is lower than two' do
+ let(:config) { { parallel: 1 } }
it 'returns error about value too low' do
expect(entry).not_to be_valid
expect(entry.errors)
- .to include 'job parallel must be greater than or equal to 1'
+ .to include 'job parallel must be greater than or equal to 2'
end
end
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