From 21f35762ca0caf623b1e656399ea3bb0fecac7a8 Mon Sep 17 00:00:00 2001 From: many Date: Thu, 28 Oct 2021 10:57:11 +0200 Subject: [PATCH] Fix content type test --- meilisearch-http/tests/content_type.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/meilisearch-http/tests/content_type.rs b/meilisearch-http/tests/content_type.rs index 5402a7cd6..45b3b784b 100644 --- a/meilisearch-http/tests/content_type.rs +++ b/meilisearch-http/tests/content_type.rs @@ -8,7 +8,7 @@ use meilisearch_http::create_app; use serde_json::{json, Value}; #[actix_rt::test] -async fn strict_json_bad_content_type() { +async fn error_json_bad_content_type() { let routes = [ // all the POST routes except the dumps that can be created without any body or content-type // and the search that is not a strict json @@ -69,10 +69,10 @@ async fn strict_json_bad_content_type() { assert_eq!( response, json!({ - "message": r#"A Content-Type header is missing. Accepted values for the Content-Type header are: "application/json""#, - "errorCode": "missing_content_type", - "errorType": "invalid_request_error", - "errorLink": "https://docs.meilisearch.com/errors#missing_content_type", + "message": r#"A Content-Type header is missing. Accepted values for the Content-Type header are: `application/json`"#, + "code": "missing_content_type", + "type": "invalid_request", + "link": "https://docs.meilisearch.com/errors#missing_content_type", }), "when calling the route `{}` with no content-type", route, @@ -91,16 +91,16 @@ async fn strict_json_bad_content_type() { let response: Value = serde_json::from_slice(&body).unwrap_or_default(); assert_eq!(status_code, 415); let expected_error_message = format!( - r#"The Content-Type "{}" is invalid. Accepted values for the Content-Type header are: "application/json""#, + r#"The Content-Type `{}` is invalid. Accepted values for the Content-Type header are: `application/json`"#, bad_content_type ); assert_eq!( response, json!({ "message": expected_error_message, - "errorCode": "invalid_content_type", - "errorType": "invalid_request_error", - "errorLink": "https://docs.meilisearch.com/errors#invalid_content_type", + "code": "invalid_content_type", + "type": "invalid_request", + "link": "https://docs.meilisearch.com/errors#invalid_content_type", }), "when calling the route `{}` with a content-type of `{}`", route,