Skip to content

Commit cb2a8ae

Browse files
committed
Fix pytest argument
1 parent 92f0a26 commit cb2a8ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numcodecs/tests/test_fixedscaleoffset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_encode_decode():
3737

3838

3939
@pytest.mark.parametrize(
40-
"offset, scale, expected",
40+
("offset", "scale", "expected"),
4141
[
4242
(1000, 10, [0, 6, 11, 17, 22, 28, 33, 39, 44, 50]),
4343
(1002.5, 10, [-25, -19, -14, -8, -3, 3, 8, 14, 19, 25]),

0 commit comments

Comments
 (0)