Fix: fix retrieval tesing wrong pagination (#7174)

### What problem does this PR solve?

Fix retrieval testing wrong pagination. #7171 

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

---------

Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
Yongteng Lei
2025-04-22 15:16:04 +08:00
committed by GitHub
parent bcac195a0c
commit 67dee2d74e
2 changed files with 7 additions and 3 deletions

View File

@ -120,11 +120,11 @@ class TestChunksRetrieval:
"""TypeError("int() argument must be a string, a bytes-like object or a real number, not \'NoneType\'")""",
marks=pytest.mark.skip,
),
({"page_size": 0}, 0, 0, ""),
# ({"page_size": 0}, 0, 0, ""),
({"page_size": 1}, 0, 1, ""),
({"page_size": 5}, 0, 4, ""),
({"page_size": "1"}, 0, 1, ""),
({"page_size": -1}, 0, 0, ""),
# ({"page_size": -1}, 0, 0, ""),
pytest.param(
{"page_size": "a"},
100,