mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-30 23:46:28 +00:00 
			
		
		
		
	Fix #2680 - replace a meaningless serde message
This commit is contained in:
		| @@ -372,7 +372,7 @@ async fn error_add_malformed_json_documents() { | ||||
|     assert_eq!( | ||||
|         response["message"], | ||||
|         json!( | ||||
|             r#"The `json` payload provided is malformed. `Couldn't serialize document value: data did not match any variant of untagged enum Either`."# | ||||
|             r#"The `json` payload provided is malformed. `Couldn't serialize document value: data are neither an object nor a list of objects`."# | ||||
|         ) | ||||
|     ); | ||||
|     assert_eq!(response["code"], json!("malformed_payload")); | ||||
| @@ -395,7 +395,7 @@ async fn error_add_malformed_json_documents() { | ||||
|     assert_eq!(status_code, 400); | ||||
|     assert_eq!( | ||||
|         response["message"], | ||||
|         json!("The `json` payload provided is malformed. `Couldn't serialize document value: data did not match any variant of untagged enum Either`.") | ||||
|         json!("The `json` payload provided is malformed. `Couldn't serialize document value: data are neither an object nor a list of objects`.") | ||||
|     ); | ||||
|     assert_eq!(response["code"], json!("malformed_payload")); | ||||
|     assert_eq!(response["type"], json!("invalid_request")); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user