Skip to content

Commit

Permalink
Make fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
renaudhartert-db committed Nov 14, 2024
1 parent 7ecc27b commit fd893eb
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tests/test_base_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,14 @@ def tell(self):
assert client._is_seekable_stream(CustomSeekableStream())


@pytest.mark.parametrize('input_data', [
b"0123456789", # bytes -> BytesIO
"0123456789", # str -> BytesIO
io.BytesIO(b"0123456789"), # BytesIO directly
io.StringIO("0123456789"), # StringIO
])
@pytest.mark.parametrize(
'input_data',
[
b"0123456789", # bytes -> BytesIO
"0123456789", # str -> BytesIO
io.BytesIO(b"0123456789"), # BytesIO directly
io.StringIO("0123456789"), # StringIO
])
def test_reset_seekable_stream_on_retry(input_data):
received_data = []

Expand Down

0 comments on commit fd893eb

Please sign in to comment.