diff --git a/tests/test_store/test_core.py b/tests/test_store/test_core.py index 1ac410954b..4b1858afb5 100644 --- a/tests/test_store/test_core.py +++ b/tests/test_store/test_core.py @@ -203,7 +203,7 @@ def test_valid() -> None: Test that path normalization works as expected """ paths = ["a", "b", "c", "d", "", "//a///b//"] - assert _normalize_paths(paths) == tuple([normalize_path(p) for p in paths]) + assert _normalize_paths(paths) == tuple(normalize_path(p) for p in paths) @staticmethod @pytest.mark.parametrize("paths", [("", "/"), ("///a", "a")])