From 3bc382e7f096c2a21443854769eb5255ebdfaa47 Mon Sep 17 00:00:00 2001 From: Joel Dierkes Date: Wed, 25 Jun 2025 15:55:42 +0200 Subject: [PATCH] update the tests --- tests/api_resources/vector_stores/test_files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/api_resources/vector_stores/test_files.py b/tests/api_resources/vector_stores/test_files.py index 350624fe..62eea508 100644 --- a/tests/api_resources/vector_stores/test_files.py +++ b/tests/api_resources/vector_stores/test_files.py @@ -143,7 +143,7 @@ def test_method_list_with_all_params(self, client: Mixedbread) -> None: limit=1000, cursor="cursor", include_total=True, - statuses=["pending"], + statuses=["pending", "in_progress"], ) assert_matches_type(SyncCursor[VectorStoreFile], file, path=["response"]) @@ -445,7 +445,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncMixedbread) limit=1000, cursor="cursor", include_total=True, - statuses=["pending"], + statuses=["pending", "in_progress"], ) assert_matches_type(AsyncCursor[VectorStoreFile], file, path=["response"])