From 52ab114f6c742788bc7cfae0e9f4ed8f60c707b5 Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Thu, 4 May 2023 00:05:39 +0200 Subject: [PATCH] Fix test on macOS: 50 tasks would result in the test consistently failing on a local macOS --- index-scheduler/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index-scheduler/src/lib.rs b/index-scheduler/src/lib.rs index 8d81c6a4f..02e45d0b9 100644 --- a/index-scheduler/src/lib.rs +++ b/index-scheduler/src/lib.rs @@ -3835,7 +3835,7 @@ mod tests { // But a task deletion that delete something should works index_scheduler - .register(KindWithContent::TaskDeletion { query: S("test"), tasks: (0..50).collect() }) + .register(KindWithContent::TaskDeletion { query: S("test"), tasks: (0..100).collect() }) .unwrap(); handle.advance_one_successful_batch();