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"])