We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6601fdc commit b7289f2Copy full SHA for b7289f2
tests/unit/synapseclient/unit_test_client.py
@@ -4312,7 +4312,7 @@ async def test_rest_get_paginated_async_with_children(self) -> None:
4312
mock_responses = [
4313
{"children": [{"id": 1}, {"id": 2}]},
4314
{"children": [{"id": 3}]},
4315
- {"children": []}, # Empty results to end pagination
+ {"children": []},
4316
]
4317
4318
with patch.object(
@@ -4358,7 +4358,7 @@ async def test_rest_get_paginated_async_custom_limit(self) -> None:
4358
# Mock the rest_get_async method to return paginated results
4359
4360
{"results": [{"id": 1}, {"id": 2}]},
4361
- {"results": []}, # Empty results to end pagination
+ {"results": []},
4362
4363
4364
0 commit comments