From 2d8060df80a62c62d7a7bda8eae3a89f8cc5f169 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Tue, 11 Apr 2023 15:26:57 +0200 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"