Skip to content

Commit 1df045b

Browse files
committed
pre-commit
1 parent 67d4a8c commit 1df045b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numcodecs/tests/test_checksum32.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@
4242
]
4343

4444

45-
@pytest.mark.parametrize("codec,arr", itertools.product(codecs, arrays))
45+
@pytest.mark.parametrize(("codec", "arr"), itertools.product(codecs, arrays))
4646
def test_encode_decode(codec, arr):
4747
check_encode_decode(arr, codec)
4848

4949

50-
@pytest.mark.parametrize("codec,arr", itertools.product(codecs, arrays))
50+
@pytest.mark.parametrize(("codec", "arr"), itertools.product(codecs, arrays))
5151
def test_errors(codec, arr):
5252
enc = codec.encode(arr)
5353
with pytest.raises(RuntimeError):

0 commit comments

Comments
 (0)