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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-06 15:10:38 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-06 15:10:38 +0300
commit25db9c1230f7b54a7337b3d2dfe714478a7d54f0 (patch)
treeb9b8d6494ad4098c52eb029ae6a47d795abf9f5b /spec/workers
parentc06178d51ad9b8d4ce665047873615facfc9c1c5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/ci/pipeline_artifacts/create_quality_report_worker_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/workers/ci/pipeline_artifacts/create_quality_report_worker_spec.rb b/spec/workers/ci/pipeline_artifacts/create_quality_report_worker_spec.rb
index be351032b58..5096691270a 100644
--- a/spec/workers/ci/pipeline_artifacts/create_quality_report_worker_spec.rb
+++ b/spec/workers/ci/pipeline_artifacts/create_quality_report_worker_spec.rb
@@ -21,8 +21,8 @@ RSpec.describe ::Ci::PipelineArtifacts::CreateQualityReportWorker do
it_behaves_like 'an idempotent worker' do
let(:job_args) { pipeline_id }
- it 'creates a pipeline artifact' do
- expect { subject }.to change { pipeline.pipeline_artifacts.count }.by(1)
+ it 'does not create another pipeline artifact if already has one' do
+ expect { subject }.not_to change { pipeline.pipeline_artifacts.count }
end
end
end