We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 810ff9b commit eab46a2Copy full SHA for eab46a2
tests/test_v2.py
@@ -82,7 +82,12 @@ def test_codec_pipeline() -> None:
82
83
@pytest.mark.parametrize("dtype", ["|S", "|V"])
84
async def test_v2_encode_decode(dtype):
85
- with config.set({"array.v2_default_compressor.bytes": {"id": "vlen-bytes"}}):
+ with config.set(
86
+ {
87
+ "array.v2_default_filters.bytes": [{"id": "vlen-bytes"}],
88
+ "array.v2_default_compressor.bytes": None,
89
+ }
90
+ ):
91
store = zarr.storage.MemoryStore()
92
g = zarr.group(store=store, zarr_format=2)
93
g.create_array(
0 commit comments