summaryrefslogtreecommitdiff
path: root/spec/requests/admin/background_migrations_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/admin/background_migrations_controller_spec.rb')
-rw-r--r--spec/requests/admin/background_migrations_controller_spec.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/spec/requests/admin/background_migrations_controller_spec.rb b/spec/requests/admin/background_migrations_controller_spec.rb
index 67c9c4df827..55971a00e55 100644
--- a/spec/requests/admin/background_migrations_controller_spec.rb
+++ b/spec/requests/admin/background_migrations_controller_spec.rb
@@ -16,7 +16,13 @@ RSpec.describe Admin::BackgroundMigrationsController, :enable_admin_mode do
create(:batched_background_migration_job, :failed, batched_migration: migration, batch_size: 10, min_value: 6, max_value: 15, attempts: 3)
allow_next_instance_of(Gitlab::BackgroundMigration::BatchingStrategies::PrimaryKeyBatchingStrategy) do |batch_class|
- allow(batch_class).to receive(:next_batch).with(anything, anything, batch_min_value: 6, batch_size: 5).and_return([6, 10])
+ allow(batch_class).to receive(:next_batch).with(
+ anything,
+ anything,
+ batch_min_value: 6,
+ batch_size: 5,
+ job_arguments: migration.job_arguments
+ ).and_return([6, 10])
end
end