We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fce33b commit af5f408Copy full SHA for af5f408
src/documents.rs
@@ -420,21 +420,17 @@ mod tests {
420
setup_test_index(&client, &index).await?;
421
index
422
.set_filterable_attributes(["id"])
423
- .await
424
- .unwrap()
+ .await?
425
.wait_for_completion(&client, None, None)
426
427
- .unwrap();
+ .await?;
+
428
let mut query = DocumentDeletionQuery::new(&index);
429
query.with_filter("id = 1");
430
-
431
432
.delete_documents_with(&query)
433
434
435
436
437
438
let document_result = index.get_document::<MyObject>("1").await;
439
440
match document_result {
0 commit comments