Skip to content

Commit 8bf7611

Browse files
committed
expand range of read sizes
1 parent af9567d commit 8bf7611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/test_util_streams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_teestream_full():
6464
(NothingButRead, to_bytes),
6565
),
6666
)
67-
@pytest.mark.parametrize("bytes_to_read", (1, 4, 7, 99, 500))
67+
@pytest.mark.parametrize("bytes_to_read", range(1, 102))
6868
@pytest.mark.parametrize("source_length", (1, 11, 100))
6969
def test_insistent_stream(source_length, bytes_to_read, stream_type, converter):
7070
source = data(length=source_length, stream_type=stream_type, converter=converter)

0 commit comments

Comments
 (0)