Skip to content

Commit b8455ae

Browse files
committed
coverage, try to fix zarr v3
1 parent b2c40a8 commit b8455ae

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

numcodecs/pcodec.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ def _get_chunk_config(self):
8888
delta_spec = DeltaSpec.auto()
8989
case "none":
9090
delta_spec = DeltaSpec.none()
91-
case "try_consecutive":
92-
delta_spec = DeltaSpec.try_consecutive(self.delta_encoding_order)
9391
case "try_lookback":
9492
delta_spec = DeltaSpec.try_lookback()
9593
case _:

numcodecs/tests/test_zarr3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
@pytest.fixture
3838
def store() -> StorePath:
39-
return StorePath(MemoryStore(mode="w"))
39+
return StorePath(MemoryStore())
4040

4141

4242
ALL_CODECS = [getattr(numcodecs.zarr3, cls_name) for cls_name in numcodecs.zarr3.__all__]

0 commit comments

Comments
 (0)