Skip to content

Commit 5e2075b

Browse files
committed
fixup
1 parent 86b72b0 commit 5e2075b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/v3/test_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_config_defaults_set() -> None:
4141
{
4242
"default_zarr_version": 3,
4343
"array": {"order": "C"},
44-
"async": {"concurrency": None, "timeout": None},
44+
"async": {"concurrency": 10, "timeout": None},
4545
"json_indent": 2,
4646
"codec_pipeline": {
4747
"path": "zarr.codecs.pipeline.BatchedCodecPipeline",
@@ -62,7 +62,7 @@ def test_config_defaults_set() -> None:
6262
}
6363
]
6464
assert config.get("array.order") == "C"
65-
assert config.get("async.concurrency") is None
65+
assert config.get("async.concurrency") == 10
6666
assert config.get("async.timeout") is None
6767
assert config.get("codec_pipeline.batch_size") == 1
6868
assert config.get("json_indent") == 2

0 commit comments

Comments
 (0)