Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 1, 2024
1 parent 976228b commit 541e7f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def test_filefind(tmp_path, filename, result):
if isinstance(result, str):
found = filefind(filename, [str(a), str(b)])
found_relative = Path(found).relative_to(tmp_path)
assert str(found_relative).replace(os.sep, '/') == result
assert str(found_relative).replace(os.sep, "/") == result
else:
with pytest.raises(result):
filefind(filename, [str(a), str(b)])

0 comments on commit 541e7f7

Please sign in to comment.