Skip to content

Commit f53ab2d

Browse files
committed
Add missing test scenario
1 parent 5bac010 commit f53ab2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_indexing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,8 +778,9 @@ def test_fill_diagonal(array, val):
778778

779779
@pytest.mark.parametrize(
780780
"dimension",
781-
[(1,), (2,), (1, 2), (2, 3), (3, 2), [1], [2], [1, 2], [2, 3], [3, 2]],
781+
[(), (1,), (2,), (1, 2), (2, 3), (3, 2), [1], [2], [1, 2], [2, 3], [3, 2]],
782782
ids=[
783+
"()",
783784
"(1, )",
784785
"(2, )",
785786
"(1, 2)",

0 commit comments

Comments
 (0)