Fix a test that was depending on the speed of the CPU

This commit is contained in:
Kerollmops 2022-06-02 10:21:19 +02:00
parent e769043576
commit ac9e7bdbe3
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ async fn list_tasks_status_and_type_filtered() {
let (response, code) = index
.filtered_tasks(
&["indexCreation", "documentAdditionOrUpdate"],
&["succeeded", "processing"],
&["succeeded", "processing", "enqueued"],
)
.await;
assert_eq!(code, 200, "{}", response);