Skip to content

Commit 4e2a3bc

Browse files
committed
fix config default tests
1 parent 07590ca commit 4e2a3bc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tests/test_array.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from itertools import accumulate
55
from typing import Any, Literal
66

7+
import numcodecs
78
import numpy as np
89
import pytest
910

@@ -431,6 +432,7 @@ def test_info_v2(self) -> None:
431432
_read_only=False,
432433
_store_type="MemoryStore",
433434
_count_bytes=128,
435+
_filters= (numcodecs.Zstd(),)
434436
)
435437
assert result == expected
436438

tests/test_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ def test_config_defaults_set() -> None:
6565
},
6666
"v2_dtype_kind_to_default_filters_and_compressor": {
6767
"biufcmM": ["zstd"],
68-
"OSUV": ["vlen-utf8"],
68+
"U": ["vlen-utf8"],
69+
"OSV": ["vlen-bytes"],
6970
},
7071
}
7172
]

0 commit comments

Comments
 (0)