Skip to content

Commit

Permalink
fix:test: invalid suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
leclairm committed Nov 8, 2024
1 parent d098fe3 commit 5b5a7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_wc_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_parse_config_file(config_file):
reference_str = Path(config_file).with_suffix(".txt").read_text()
test_str = str(Workflow.from_yaml(config_file))
if test_str != reference_str:
new_path = Path(config_file).with_suffix("new.txt")
new_path = Path(config_file).with_suffix(".new.txt")
new_path.write_text(test_str)
msg = f"Workflow graph doesn't match serialized data. New graph string dumped to {new_path}."
raise ValueError(msg)
Expand Down

0 comments on commit 5b5a7e2

Please sign in to comment.