Skip to content

Commit fd893eb

Browse files
Make fmt
1 parent 7ecc27b commit fd893eb

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

tests/test_base_client.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -357,12 +357,14 @@ def tell(self):
357357
assert client._is_seekable_stream(CustomSeekableStream())
358358

359359

360-
@pytest.mark.parametrize('input_data', [
361-
b"0123456789", # bytes -> BytesIO
362-
"0123456789", # str -> BytesIO
363-
io.BytesIO(b"0123456789"), # BytesIO directly
364-
io.StringIO("0123456789"), # StringIO
365-
])
360+
@pytest.mark.parametrize(
361+
'input_data',
362+
[
363+
b"0123456789", # bytes -> BytesIO
364+
"0123456789", # str -> BytesIO
365+
io.BytesIO(b"0123456789"), # BytesIO directly
366+
io.StringIO("0123456789"), # StringIO
367+
])
366368
def test_reset_seekable_stream_on_retry(input_data):
367369
received_data = []
368370

0 commit comments

Comments
 (0)