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 7ecc27b commit fd893ebCopy full SHA for fd893eb
tests/test_base_client.py
@@ -357,12 +357,14 @@ def tell(self):
357
assert client._is_seekable_stream(CustomSeekableStream())
358
359
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
-])
+@pytest.mark.parametrize(
+ 'input_data',
+ [
+ b"0123456789", # bytes -> BytesIO
+ "0123456789", # str -> BytesIO
+ io.BytesIO(b"0123456789"), # BytesIO directly
366
+ io.StringIO("0123456789"), # StringIO
367
+ ])
368
def test_reset_seekable_stream_on_retry(input_data):
369
received_data = []
370
0 commit comments