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-03-16 12:11:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 12:11:17 +0300
commit67cdffe4deb5c887c17115d4f974c0e8a267ffd2 (patch)
tree05023f6d748b4ca308eb9d61d28696726cad85f3 /spec/workers/expire_build_artifacts_worker_spec.rb
parent93c27b216aa57d57ebd8f5f2581e45dc300324b8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers/expire_build_artifacts_worker_spec.rb')
-rw-r--r--spec/workers/expire_build_artifacts_worker_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/expire_build_artifacts_worker_spec.rb b/spec/workers/expire_build_artifacts_worker_spec.rb
index 6d73d715d21..3f8da3fb71c 100644
--- a/spec/workers/expire_build_artifacts_worker_spec.rb
+++ b/spec/workers/expire_build_artifacts_worker_spec.rb
@@ -7,7 +7,7 @@ RSpec.describe ExpireBuildArtifactsWorker do
describe '#perform' do
it 'executes a service' do
- expect_next_instance_of(Ci::DestroyExpiredJobArtifactsService) do |instance|
+ expect_next_instance_of(Ci::JobArtifacts::DestroyAllExpiredService) do |instance|
expect(instance).to receive(:execute).and_call_original
end