Skip to content

Commit 935094b

Browse files
refactor: run black formatting
1 parent 7e43341 commit 935094b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/core/test_pagination.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,9 @@ def test__paginate_continuation_token_unchanged__raises_runtime_error(self):
233233
mock_fetch = MagicMock(
234234
side_effect=[
235235
MockResponseWithItems([1, 2], "token1"),
236-
MockResponseWithItems([3, 4], "token1"), # Same token - should raise error
236+
MockResponseWithItems(
237+
[3, 4], "token1"
238+
), # Same token - should raise error
237239
]
238240
)
239241

0 commit comments

Comments
 (0)