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:
authorMatija Čupić <matteeyah@gmail.com>2019-05-21 01:56:19 +0300
committerMatija Čupić <matteeyah@gmail.com>2019-05-28 18:06:29 +0300
commitc86fa0e45e4a053090b5c17b9678120e39f696a6 (patch)
tree177623aae61915a5d23701ab8428c264261b0724 /spec/models
parent9e6f37744a7f30a181879a1e2799e129c5e795c9 (diff)
Rename with_all_reports to with_reports
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/ci/job_artifact_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/ci/job_artifact_spec.rb b/spec/models/ci/job_artifact_spec.rb
index d3809f0a460..e6d682c24d9 100644
--- a/spec/models/ci/job_artifact_spec.rb
+++ b/spec/models/ci/job_artifact_spec.rb
@@ -23,10 +23,10 @@ describe Ci::JobArtifact do
it_behaves_like 'having unique enum values'
- describe '.with_all_reports' do
+ describe '.with_reports' do
let!(:artifact) { create(:ci_job_artifact, :archive) }
- subject { described_class.with_all_reports }
+ subject { described_class.with_reports }
it { is_expected.to be_empty }