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>2017-05-08 16:14:41 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-05-08 16:14:41 +0300
commit20bfa893b1acb3831f861e01cba78a40ab0065c4 (patch)
tree9b51983c4f0166143b265a457365b18f856f5e3d
parent35802daadcb0e60060a83956efdf6b0bf0c4aa06 (diff)
Fix specs for a concern that implements CI/CD statusesfix/gb/fix-skipped-pipeline-with-allowed-to-fail-jobs
-rw-r--r--spec/models/concerns/has_status_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/concerns/has_status_spec.rb b/spec/models/concerns/has_status_spec.rb
index 67dae7cf4c0..bcee293d876 100644
--- a/spec/models/concerns/has_status_spec.rb
+++ b/spec/models/concerns/has_status_spec.rb
@@ -48,7 +48,7 @@ describe HasStatus do
[create(type, status: :failed, allow_failure: true)]
end
- it { is_expected.to eq 'skipped' }
+ it { is_expected.to eq 'success' }
end
context 'success and canceled' do