Skip to content

Commit a54e442

Browse files
committed
fix linting errors
1 parent acf5d3f commit a54e442

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/file/test_path_default.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def test_resolve_library_path_files_subdir(self, tmp_path, monkeypatch):
6363
assert finder.find_file_path("data1.csv") == target
6464

6565
def test_resolve_library_path_root_fallback(self, tmp_path, monkeypatch):
66-
"""When $LIBRARY_PATH/files/<name> is missing, fall back to $LIBRARY_PATH/<name>."""
66+
"""Fall back to $LIBRARY_PATH/<name> when files/<name> is missing."""
6767
target = tmp_path / "data1.csv"
6868
target.write_text("hello")
6969
monkeypatch.setenv("LIBRARY_PATH", str(tmp_path))
@@ -72,7 +72,7 @@ def test_resolve_library_path_root_fallback(self, tmp_path, monkeypatch):
7272
assert finder.find_file_path("data1.csv") == target
7373

7474
def test_resolve_library_path_subpath_under_files(self, tmp_path, monkeypatch):
75-
"""Relative subpaths like 'file/data2.csv' resolve under $LIBRARY_PATH/files/."""
75+
"""Relative subpaths like 'file/data2.csv' resolve under $LIBRARY_PATH/files."""
7676
nested = tmp_path / "files" / "file"
7777
nested.mkdir(parents=True)
7878
target = nested / "data2.csv"

0 commit comments

Comments
 (0)