Skip to content

Commit ea45c4c

Browse files
committed
Fixed test for Windows glob paths
1 parent 1c391be commit ea45c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_files.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_dedents_properly_when_file_does_not_contain_pattern(self, fixtures_path
117117
caplog.set_level(logging.INFO)
118118
logger = get_indented_logger(__name__)
119119
logger.reset()
120-
globs = fixtures_path / "glob" / "**/*.txt"
120+
globs = f"{fixtures_path}/glob/**/*.txt"
121121
overrides = {
122122
"current_version": "1.2.3",
123123
"files": [{"glob": str(globs), "ignore_missing_file": True, "ignore_missing_version": True}],

0 commit comments

Comments
 (0)