Skip to content

Commit

Permalink
Fixed test for Windows glob paths
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed May 1, 2024
1 parent 1c391be commit ea45c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def test_dedents_properly_when_file_does_not_contain_pattern(self, fixtures_path
caplog.set_level(logging.INFO)
logger = get_indented_logger(__name__)
logger.reset()
globs = fixtures_path / "glob" / "**/*.txt"
globs = f"{fixtures_path}/glob/**/*.txt"
overrides = {
"current_version": "1.2.3",
"files": [{"glob": str(globs), "ignore_missing_file": True, "ignore_missing_version": True}],
Expand Down

0 comments on commit ea45c4c

Please sign in to comment.