From 4150bb513fbe5c9cda14446fc8db88af2d92fec5 Mon Sep 17 00:00:00 2001 From: ccurme Date: Tue, 17 Feb 2026 09:08:14 -0500 Subject: [PATCH] fix(mistralai): update test (#35270) --- .../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 (