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:
authorFilipa Lacerda <filipa@gitlab.com>2018-03-09 20:59:59 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-03-09 20:59:59 +0300
commitcd6a58c8100356be95019be6a69724066469bd42 (patch)
treecc60620aa2dfed691e7369aacca33855653ec946 /features
parent8bbaf266cc8d1ff03c4f7a4173ce9a7ac60c0cbb (diff)
Fix broken test
Diffstat (limited to 'features')
-rw-r--r--features/steps/shared/builds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/shared/builds.rb b/features/steps/shared/builds.rb
index a3e4459f169..f5950145348 100644
--- a/features/steps/shared/builds.rb
+++ b/features/steps/shared/builds.rb
@@ -11,7 +11,7 @@ module SharedBuilds
step 'project has a recent build' do
@pipeline = create(:ci_empty_pipeline, project: @project, sha: @project.commit.sha, ref: 'master')
- @build = create(:ci_build, :running, :coverage, pipeline: @pipeline)
+ @build = create(:ci_build, :running, :coverage, :trace_artifact, pipeline: @pipeline)
end
step 'recent build is successful' do