Skip to content

Commit 3bc382e

Browse files
committed
update the tests
1 parent d917da0 commit 3bc382e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/api_resources/vector_stores/test_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def test_method_list_with_all_params(self, client: Mixedbread) -> None:
143143
limit=1000,
144144
cursor="cursor",
145145
include_total=True,
146-
statuses=["pending"],
146+
statuses=["pending", "in_progress"],
147147
)
148148
assert_matches_type(SyncCursor[VectorStoreFile], file, path=["response"])
149149

@@ -445,7 +445,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncMixedbread)
445445
limit=1000,
446446
cursor="cursor",
447447
include_total=True,
448-
statuses=["pending"],
448+
statuses=["pending", "in_progress"],
449449
)
450450
assert_matches_type(AsyncCursor[VectorStoreFile], file, path=["response"])
451451

0 commit comments

Comments
 (0)