We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc9fea3 commit 3b7360bCopy full SHA for 3b7360b
tests/test_provenance.py
@@ -186,10 +186,10 @@ def test_directory_workflow(tmp_path: Path) -> None:
186
187
# Input files should be captured by hash value,
188
# even if they were inside a class: Directory
189
- for l, l_hash in sha1.items():
+ for letter, l_hash in sha1.items():
190
prefix = l_hash[:2] # first 2 letters
191
p = folder / "data" / prefix / l_hash
192
- assert p.is_file(), f"Could not find {l} as {p}"
+ assert p.is_file(), f"Could not find {letter} as {p}"
193
194
195
@needs_docker
0 commit comments