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:
authorLin Jen-Shin <godfat@godfat.org>2016-11-22 13:55:00 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-11-22 13:55:00 +0300
commit3566965417b7921cdb301c44cfb308551cdc1e82 (patch)
treed729bf639505a61d60b3dec976cbcae7334ba4f8 /spec/models/ci
parent17388eb034de3808c5c7f80c19726575dd073ce1 (diff)
Passing a user to retry_failed in tests
Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7508#note_18794547
Diffstat (limited to 'spec/models/ci')
-rw-r--r--spec/models/ci/pipeline_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/ci/pipeline_spec.rb b/spec/models/ci/pipeline_spec.rb
index cbf25c23b05..03924a436de 100644
--- a/spec/models/ci/pipeline_spec.rb
+++ b/spec/models/ci/pipeline_spec.rb
@@ -503,7 +503,7 @@ describe Ci::Pipeline, models: true do
create(:ci_build, :failed, name: 'build', pipeline: pipeline)
create(:generic_commit_status, :failed, name: 'jenkins', pipeline: pipeline)
- pipeline.retry_failed(nil)
+ pipeline.retry_failed(create(:user))
end
it 'retries only build' do
@@ -516,7 +516,7 @@ describe Ci::Pipeline, models: true do
create(:ci_build, :failed, name: 'build', stage_idx: 0, pipeline: pipeline)
create(:ci_build, :failed, name: 'jenkins', stage_idx: 1, pipeline: pipeline)
- pipeline.retry_failed(nil)
+ pipeline.retry_failed(create(:user))
end
it 'retries both builds' do
@@ -529,7 +529,7 @@ describe Ci::Pipeline, models: true do
create(:ci_build, :failed, name: 'build', stage_idx: 0, pipeline: pipeline)
create(:ci_build, :canceled, name: 'jenkins', stage_idx: 1, pipeline: pipeline)
- pipeline.retry_failed(nil)
+ pipeline.retry_failed(create(:user))
end
it 'retries both builds' do