Skip to content

Commit ac27ea7

Browse files
committed
expand test parametrization
1 parent 8805c35 commit ac27ea7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_array.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1869,7 +1869,8 @@ def test_unknown_object_codec_default_filters_v2() -> None:
18691869

18701870

18711871
@pytest.mark.parametrize(
1872-
("array_shape", "shard_shape", "chunk_shape"), [((10,), None, (1,)), ((30, 10), None, (2, 5))]
1872+
("array_shape", "shard_shape", "chunk_shape"),
1873+
[((10,), None, (1,)), ((10,), 1, (1,)), ((30, 10), None, (2, 5)), ((30, 10), (4, 10), (2, 5))],
18731874
)
18741875
def test_chunk_grid_shape(
18751876
array_shape: tuple[int, ...],

0 commit comments

Comments
 (0)