From 11262f212ba9678e4f330ea409846b92b46f0ec1 Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Mon, 16 Feb 2026 16:45:24 -0500 Subject: [PATCH] fix test --- .../mistralai/tests/integration_tests/test_embeddings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/partners/mistralai/tests/integration_tests/test_embeddings.py b/libs/partners/mistralai/tests/integration_tests/test_embeddings.py index b5e0f2787cc..423dfbc4e1f 100644 --- a/libs/partners/mistralai/tests/integration_tests/test_embeddings.py +++ b/libs/partners/mistralai/tests/integration_tests/test_embeddings.py @@ -40,7 +40,7 @@ async def test_mistralai_embedding_documents_tenacity_error_async() -> None: documents = ["foo bar", "test document"] embedding = MistralAIEmbeddings(max_retries=0) mock_response = httpx.Response( - status_code=400, + status_code=429, request=httpx.Request("POST", url=embedding.async_client.base_url), ) with (