Skip to content

Commit 6ef7924

Browse files
committed
Merge branch 'main' of https://github.com/zarr-developers/zarr-python into feat/fixed-length-strings
2 parents 6388203 + aa33415 commit 6ef7924

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_store/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def test_valid() -> None:
203203
Test that path normalization works as expected
204204
"""
205205
paths = ["a", "b", "c", "d", "", "//a///b//"]
206-
assert _normalize_paths(paths) == tuple([normalize_path(p) for p in paths])
206+
assert _normalize_paths(paths) == tuple(normalize_path(p) for p in paths)
207207

208208
@staticmethod
209209
@pytest.mark.parametrize("paths", [("", "/"), ("///a", "a")])

0 commit comments

Comments
 (0)