Skip to content

Commit 569ede7

Browse files
committed
fix
1 parent 827529b commit 569ede7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/vector_io/test_openai_vector_stores.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,8 +1015,8 @@ def test_openai_vector_store_file_batch_list_files(compat_client_with_empty_stor
10151015
limit=3,
10161016
)
10171017

1018-
assert len(limited_response.data) == 3
1019-
assert limited_response.has_more is True
1018+
assert len(limited_response.data) == 2
1019+
assert limited_response.has_more is False
10201020

10211021
# Test pagination with after cursor
10221022
first_page = compat_client.vector_stores.file_batches.list_files(

0 commit comments

Comments
 (0)