Skip to content

Commit 5890548

Browse files
committed
fix: fix test
1 parent c7c9160 commit 5890548

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_metadata/test_v3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def test_parse_codecs_unknown_codec_raises(monkeypatch: pytest.MonkeyPatch) -> N
341341
from zarr.registry import Registry
342342

343343
# to make sure the codec is always unknown (not sure if that's necessary)
344-
monkeypatch.setattr(zarr.registry, "__codec_registries", defaultdict(Registry))
344+
monkeypatch.setattr(zarr.registry, "_codec_registries", defaultdict(Registry))
345345

346346
codecs = [{"name": "unknown"}]
347347
with pytest.raises(UnknownCodecError):

0 commit comments

Comments
 (0)