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 07590ca commit 4e2a3bcCopy full SHA for 4e2a3bc
tests/test_array.py
@@ -4,6 +4,7 @@
4
from itertools import accumulate
5
from typing import Any, Literal
6
7
+import numcodecs
8
import numpy as np
9
import pytest
10
@@ -431,6 +432,7 @@ def test_info_v2(self) -> None:
431
432
_read_only=False,
433
_store_type="MemoryStore",
434
_count_bytes=128,
435
+ _filters= (numcodecs.Zstd(),)
436
)
437
assert result == expected
438
tests/test_config.py
@@ -65,7 +65,8 @@ def test_config_defaults_set() -> None:
65
},
66
"v2_dtype_kind_to_default_filters_and_compressor": {
67
"biufcmM": ["zstd"],
68
- "OSUV": ["vlen-utf8"],
+ "U": ["vlen-utf8"],
69
+ "OSV": ["vlen-bytes"],
70
71
}
72
]
0 commit comments