From 4058f6c870731a8da770249943160747be344c81 Mon Sep 17 00:00:00 2001 From: Tamo Date: Tue, 21 Mar 2023 18:28:26 +0100 Subject: [PATCH] fix the tests --- meilisearch/tests/auth/errors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meilisearch/tests/auth/errors.rs b/meilisearch/tests/auth/errors.rs index 904bb182d..cd1e9acf2 100644 --- a/meilisearch/tests/auth/errors.rs +++ b/meilisearch/tests/auth/errors.rs @@ -60,7 +60,7 @@ async fn create_api_key_bad_uid() { snapshot!(code, @"400 Bad Request"); snapshot!(json_string!(response), @r###" { - "message": "Invalid value at `.uid`: invalid character: expected an optional prefix of `urn:uuid:` followed by [0-9a-zA-Z], found `o` at 2", + "message": "Invalid value at `.uid`: invalid character: expected an optional prefix of `urn:uuid:` followed by [0-9a-fA-F-], found `o` at 2", "code": "invalid_api_key_uid", "type": "invalid_request", "link": "https://docs.meilisearch.com/errors#invalid_api_key_uid"