Skip to content

Commit b9d6ea3

Browse files
committed
add test for unsharded data
1 parent 66fb795 commit b9d6ea3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_array.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ async def test_nchunks_initialized(
418418

419419
@pytest.mark.parametrize("path", ["", "foo"])
420420
@pytest.mark.parametrize(
421-
("shape", "shard_shape", "chunk_shape"), [((10,), (1,), (1,)), ((40,), (20,), (5,))]
421+
("shape", "shard_shape", "chunk_shape"),
422+
[((10,), None, (1,)), ((10,), (1,), (1,)), ((40,), (20,), (5,))],
422423
)
423424
async def test_chunks_initialized(
424425
path: str, shape: tuple[int, ...], shard_shape: tuple[int, ...], chunk_shape: tuple[int, ...]

0 commit comments

Comments
 (0)