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:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-04-16 14:14:39 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-05-07 23:43:53 +0300
commitf2a4420d66216e3a9172f4ab45c6b4fa96578117 (patch)
tree6b7c8845c085f804a02e2ead9109910fd30e667e /spec/views
parent6ad3814e1b31bfacfae7a2aabb4e4607b12ca66f (diff)
Store retried in database for CI builds
Diffstat (limited to 'spec/views')
-rw-r--r--spec/views/projects/pipelines/_stage.html.haml_spec.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/views/projects/pipelines/_stage.html.haml_spec.rb b/spec/views/projects/pipelines/_stage.html.haml_spec.rb
index 10095ad7694..9c91c4e0fbd 100644
--- a/spec/views/projects/pipelines/_stage.html.haml_spec.rb
+++ b/spec/views/projects/pipelines/_stage.html.haml_spec.rb
@@ -39,9 +39,8 @@ describe 'projects/pipelines/_stage', :view do
context 'when there are retried builds present' do
before do
- create_list(:ci_build, 2, name: 'test:build',
- stage: stage.name,
- pipeline: pipeline)
+ create(:ci_build, name: 'test:build', stage: stage.name, pipeline: pipeline, retried: true)
+ create(:ci_build, name: 'test:build', stage: stage.name, pipeline: pipeline)
end
it 'shows only latest builds' do