diff options
| author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-02-19 19:31:57 +0100 |
|---|---|---|
| committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-02-19 19:31:57 +0100 |
| commit | 73be775cd70b3cffb78a16da5a52474d9519201e (patch) | |
| tree | 9639d3145f30a15e748aad029df3c9cb3b1d40e2 /spec/requests/ci | |
| parent | 6c6bb79422c9979708b44b35ed1c465bcd87ef99 (diff) | |
| download | gitlab-ce-73be775cd70b3cffb78a16da5a52474d9519201e.tar.gz | |
Fix ci_build trace trait
Diffstat (limited to 'spec/requests/ci')
| -rw-r--r-- | spec/requests/ci/api/builds_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/requests/ci/api/builds_spec.rb b/spec/requests/ci/api/builds_spec.rb index 8eb9881649c..57d7eb927fd 100644 --- a/spec/requests/ci/api/builds_spec.rb +++ b/spec/requests/ci/api/builds_spec.rb @@ -132,7 +132,7 @@ describe Ci::API::API do describe "PUT /builds/:id" do let(:commit) {create(:ci_commit, project: project)} - let(:build) { create(:ci_build_with_trace, commit: commit, runner_id: runner.id) } + let(:build) { create(:ci_build, :trace, commit: commit, runner_id: runner.id) } before do build.run! |
