From 84e7bd934296f3a5ce0d161e4de881252019d055 Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Wed, 3 May 2023 17:51:28 +0200 Subject: [PATCH] Fix test after rebase on filter additions --- meilisearch/tests/documents/errors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meilisearch/tests/documents/errors.rs b/meilisearch/tests/documents/errors.rs index ac9bc132b..b857d4e1d 100644 --- a/meilisearch/tests/documents/errors.rs +++ b/meilisearch/tests/documents/errors.rs @@ -453,7 +453,7 @@ async fn delete_document_by_filter() { snapshot!(code, @"400 Bad Request"); snapshot!(json_string!(response), @r###" { - "message": "Was expecting an operation `=`, `!=`, `>=`, `>`, `<=`, `<`, `IN`, `NOT IN`, `TO`, `EXISTS`, `NOT EXISTS`, `_geoRadius`, or `_geoBoundingBox` at `hello`.\n1:6 hello", + "message": "Was expecting an operation `=`, `!=`, `>=`, `>`, `<=`, `<`, `IN`, `NOT IN`, `TO`, `EXISTS`, `NOT EXISTS`, `IS NULL`, `IS NOT NULL`, `IS EMPTY`, `IS NOT EMPTY`, `_geoRadius`, or `_geoBoundingBox` at `hello`.\n1:6 hello", "code": "invalid_document_delete_filter", "type": "invalid_request", "link": "https://docs.meilisearch.com/errors#invalid_document_delete_filter"