Skip to content

Commit

Permalink
Update tests/test_provenance.py
Browse files Browse the repository at this point in the history
Co-authored-by: Michael R. Crusoe <[email protected]>
  • Loading branch information
ElderMedic and mr-c authored Jul 22, 2024
1 parent f1445e0 commit b3d9e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_provenance.py
Original file line number Diff line number Diff line change
Expand Up @@ -976,8 +976,8 @@ def test_directory_workflow_no_listing_no_input(tmp_path: Path) -> None:

if p.is_file():
print(f"Analysing file {f!r} {p!r}")
with open(p, "r", encoding="ascii") as f:
content = f.read()
with open(p, "r", encoding="ascii") as fh:
content = fh.read()
print(f"Content: {content!r}")
assert not p.is_file(), f"Could find {f!r} as {p!r}"
else:
Expand Down

0 comments on commit b3d9e19

Please sign in to comment.