Skip to content

Commit eab46a2

Browse files
committed
test
1 parent 810ff9b commit eab46a2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/test_v2.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,12 @@ def test_codec_pipeline() -> None:
8282

8383
@pytest.mark.parametrize("dtype", ["|S", "|V"])
8484
async def test_v2_encode_decode(dtype):
85-
with config.set({"array.v2_default_compressor.bytes": {"id": "vlen-bytes"}}):
85+
with config.set(
86+
{
87+
"array.v2_default_filters.bytes": [{"id": "vlen-bytes"}],
88+
"array.v2_default_compressor.bytes": None,
89+
}
90+
):
8691
store = zarr.storage.MemoryStore()
8792
g = zarr.group(store=store, zarr_format=2)
8893
g.create_array(

0 commit comments

Comments
 (0)