Fix compiler errors related autobatching option of the index scheduler

This commit is contained in:
Loïc Lecrenier 2022-10-11 11:58:33 +02:00 committed by Clément Renault
parent eabac9676b
commit 9a74ea0943
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
14 changed files with 19 additions and 3 deletions

View file

@ -570,7 +570,7 @@ mod tests {
#[test]
fn register() {
// In this test, the handle doesn't make any progress, we only check that the tasks are registered
let (index_scheduler, _handle) = IndexScheduler::test();
let (index_scheduler, _handle) = IndexScheduler::test(true);
let kinds = [
index_creation_task("catto", "mouse"),
@ -688,7 +688,7 @@ mod tests {
#[test]
fn task_deletion_undeleteable() {
let (index_scheduler, handle) = IndexScheduler::test();
let (index_scheduler, handle) = IndexScheduler::test(true);
let to_enqueue = [
index_creation_task("catto", "mouse"),
@ -730,7 +730,7 @@ mod tests {
#[test]
fn task_deletion_deleteable() {
let (index_scheduler, handle) = IndexScheduler::test();
let (index_scheduler, handle) = IndexScheduler::test(true);
let (file0, documents_count0) = sample_documents(&index_scheduler, 0, 0);
let (file1, documents_count1) = sample_documents(&index_scheduler, 1, 1);