From ce12000af31daf7863f8b41dd6cc8cf8b4c80fde Mon Sep 17 00:00:00 2001 From: Liu Hancheng Date: Fri, 25 Mar 2022 21:33:47 +0800 Subject: [PATCH] add some comments --- meilisearch-http/tests/documents/add_documents.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meilisearch-http/tests/documents/add_documents.rs b/meilisearch-http/tests/documents/add_documents.rs index 26a4858ba..4afc801b8 100644 --- a/meilisearch-http/tests/documents/add_documents.rs +++ b/meilisearch-http/tests/documents/add_documents.rs @@ -348,8 +348,7 @@ async fn error_add_malformed_json_documents() { json!("https://docs.meilisearch.com/errors#malformed_payload") ); - - + // add one more char to the long string to test if the truncating works. let document = format!("\"{}m\"", long); let req = test::TestRequest::put() .uri("/indexes/dog/documents")