We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e43341 commit 935094bCopy full SHA for 935094b
tests/core/test_pagination.py
@@ -233,7 +233,9 @@ def test__paginate_continuation_token_unchanged__raises_runtime_error(self):
233
mock_fetch = MagicMock(
234
side_effect=[
235
MockResponseWithItems([1, 2], "token1"),
236
- MockResponseWithItems([3, 4], "token1"), # Same token - should raise error
+ MockResponseWithItems(
237
+ [3, 4], "token1"
238
+ ), # Same token - should raise error
239
]
240
)
241
0 commit comments