Skip to content

Commit 0087795

Browse files
committed
fix for tests
1 parent f71d6fb commit 0087795

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/v3/test_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_config_defaults_set() -> None:
4444
"async": {"concurrency": None, "timeout": None},
4545
"json_indent": 2,
4646
"codec_pipeline": {
47-
"path": "zarr.codecs.pipeline.BatchedCodecPipeline",
47+
"path": "zarr.core.codec_pipeline.BatchedCodecPipeline",
4848
"batch_size": 1,
4949
},
5050
"buffer": "zarr.core.buffer.Buffer",
@@ -92,8 +92,8 @@ def test_config_codec_pipeline_class(store):
9292
# has default value
9393
assert get_pipeline_class().__name__ != ""
9494

95-
config.set({"codec_pipeline.name": "zarr.codecs.pipeline.BatchedCodecPipeline"})
96-
assert get_pipeline_class() == zarr.codecs.pipeline.BatchedCodecPipeline
95+
config.set({"codec_pipeline.name": "zarr.core.codec_pipeline.BatchedCodecPipeline"})
96+
assert get_pipeline_class() == zarr.core.codec_pipeline.BatchedCodecPipeline
9797

9898
_mock = Mock()
9999

0 commit comments

Comments
 (0)