mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
feat(API-keys): Change immutable_field error message
Change the immutable_field error message to fit the recent changes in the spec:
aa0a148ee3..84a9baff68
This commit is contained in:
parent
08d72e32a4
commit
9eea142e2b
2 changed files with 4 additions and 4 deletions
|
@ -1150,7 +1150,7 @@ async fn error_patch_api_key_indexes() {
|
|||
let (response, code) = server.patch_api_key(&uid, content).await;
|
||||
assert_eq!(400, code, "{:?}", &response);
|
||||
|
||||
let expected = json!({"message": "`indexes` field cannot be modified for the given resource.",
|
||||
let expected = json!({"message": "The `indexes` field cannot be modified for the given resource.",
|
||||
"code": "immutable_field",
|
||||
"type": "invalid_request",
|
||||
"link": "https://docs.meilisearch.com/errors#immutable_field"
|
||||
|
@ -1206,7 +1206,7 @@ async fn error_patch_api_key_actions() {
|
|||
let (response, code) = server.patch_api_key(&uid, content).await;
|
||||
assert_eq!(400, code, "{:?}", &response);
|
||||
|
||||
let expected = json!({"message": "`actions` field cannot be modified for the given resource.",
|
||||
let expected = json!({"message": "The `actions` field cannot be modified for the given resource.",
|
||||
"code": "immutable_field",
|
||||
"type": "invalid_request",
|
||||
"link": "https://docs.meilisearch.com/errors#immutable_field"
|
||||
|
@ -1254,7 +1254,7 @@ async fn error_patch_api_key_expiration_date() {
|
|||
let (response, code) = server.patch_api_key(&uid, content).await;
|
||||
assert_eq!(400, code, "{:?}", &response);
|
||||
|
||||
let expected = json!({"message": "`expiresAt` field cannot be modified for the given resource.",
|
||||
let expected = json!({"message": "The `expiresAt` field cannot be modified for the given resource.",
|
||||
"code": "immutable_field",
|
||||
"type": "invalid_request",
|
||||
"link": "https://docs.meilisearch.com/errors#immutable_field"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue