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>2022-04-06 00:08:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-06 00:08:46 +0300
commit6cdb39a9ef2d9a3008ce2b4aeb5dacb86e0a1c2b (patch)
tree46a8685ab2511e6eaf06d2d751617b71c52e78a5 /spec/workers/namespaces
parentbc3187f6d968f954c7998b66a6595273f9ecf5e1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers/namespaces')
-rw-r--r--spec/workers/namespaces/root_statistics_worker_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/namespaces/root_statistics_worker_spec.rb b/spec/workers/namespaces/root_statistics_worker_spec.rb
index a97a850bbcf..7b774da0bdc 100644
--- a/spec/workers/namespaces/root_statistics_worker_spec.rb
+++ b/spec/workers/namespaces/root_statistics_worker_spec.rb
@@ -10,7 +10,7 @@ RSpec.describe Namespaces::RootStatisticsWorker, '#perform' do
context 'with a namespace' do
it 'executes refresher service' do
expect_any_instance_of(Namespaces::StatisticsRefresherService)
- .to receive(:execute)
+ .to receive(:execute).and_call_original
worker.perform(group.id)
end