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-10-29 03:10:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-29 03:10:36 +0300
commitc20b560205e7c56a30c80b4fa852270f282caf71 (patch)
tree14748040af41789c36d48f3d152c4f4ec8ed75f9 /spec/workers/concerns
parentfe30694fcf7a4ff4919a6f05d9628721d63744e1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers/concerns')
-rw-r--r--spec/workers/concerns/application_worker_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/workers/concerns/application_worker_spec.rb b/spec/workers/concerns/application_worker_spec.rb
index 2f2d4c2e999..f08c5336506 100644
--- a/spec/workers/concerns/application_worker_spec.rb
+++ b/spec/workers/concerns/application_worker_spec.rb
@@ -355,9 +355,9 @@ RSpec.describe ApplicationWorker do
worker.log_bulk_perform_async!
expect(Sidekiq.logger).to(
- receive(:info).with(hash_including('args_list' => args)).once.and_call_original)
+ receive(:info).with(hash_including('class' => worker.name, 'args_list' => args)).once.and_call_original)
expect(Sidekiq.logger).to(
- receive(:info).with(hash_including('jid_list' => anything)).once.and_call_original)
+ receive(:info).with(hash_including('class' => worker.name, 'jid_list' => anything)).once.and_call_original)
perform_action
end