Skip to content

Commit 4ccbdde

Browse files
committed
fix assert message
1 parent 6a7f35f commit 4ccbdde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_provenance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def cwltool(tmp_path: Path, *args: Any) -> Path:
4141
tmp_dir.mkdir()
4242
with working_directory(tmp_dir):
4343
status = main(new_args)
44-
assert status == 0, "Failed: cwltool.main(%r)" % (args)
44+
assert status == 0, f"Failed: cwltool.main({args})"
4545
return prov_folder
4646

4747

0 commit comments

Comments
 (0)