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 86b72b0 commit 5e2075bCopy full SHA for 5e2075b
tests/v3/test_config.py
@@ -41,7 +41,7 @@ def test_config_defaults_set() -> None:
41
{
42
"default_zarr_version": 3,
43
"array": {"order": "C"},
44
- "async": {"concurrency": None, "timeout": None},
+ "async": {"concurrency": 10, "timeout": None},
45
"json_indent": 2,
46
"codec_pipeline": {
47
"path": "zarr.codecs.pipeline.BatchedCodecPipeline",
@@ -62,7 +62,7 @@ def test_config_defaults_set() -> None:
62
}
63
]
64
assert config.get("array.order") == "C"
65
- assert config.get("async.concurrency") is None
+ assert config.get("async.concurrency") == 10
66
assert config.get("async.timeout") is None
67
assert config.get("codec_pipeline.batch_size") == 1
68
assert config.get("json_indent") == 2
0 commit comments