Skip to content

Commit dc7f6dd

Browse files
committed
Make sure negative threads are tested
1 parent d42f0db commit dc7f6dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_igzip_threaded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_threaded_read():
2828

2929

3030
@pytest.mark.parametrize(["mode", "threads"],
31-
itertools.product(["wb", "wt"], [1, 3, 12]))
31+
itertools.product(["wb", "wt"], [1, 3, -1]))
3232
def test_threaded_write(mode, threads):
3333
with tempfile.NamedTemporaryFile("wb", delete=False) as tmp:
3434
# Use a small block size to simulate many writes.

0 commit comments

Comments
 (0)