summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-03-09 17:59:59 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-03-09 17:59:59 +0000
commitcd6a58c8100356be95019be6a69724066469bd42 (patch)
treecc60620aa2dfed691e7369aacca33855653ec946
parent8bbaf266cc8d1ff03c4f7a4173ce9a7ac60c0cbb (diff)
downloadgitlab-ce-cd6a58c8100356be95019be6a69724066469bd42.tar.gz
Fix broken test
-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