Skip to content

Commit 618159c

Browse files
committed
tweaks
1 parent 985a123 commit 618159c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/test_helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,5 @@ def _compare_workflows(workflow1: Workflow, workflow_2: Workflow):
129129
# sys.stderr.write(f"WORKFLOW2 OUTPUT FILE: {output_file.file_id} {output_file.size}\n")
130130
workflow2_output_bytes += output_file.size
131131
assert (workflow1_input_bytes == workflow2_input_bytes)
132-
assert (workflow1_output_bytes == workflow2_output_bytes)
132+
assert (workflow1_output_bytes == workflow2_output_bytes)
133+

wfcommons/wfinstances/logs/taskvine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def _construct_task_input_output_files(self) -> None:
339339
# Remove quotes
340340
source = source [1:-1]
341341
destination = destination [1:-2]
342-
# Remove weird file- prefix
342+
# Remove weird "file-" prefix
343343
source = source.replace("--", "-") # Sometimes there is an unexpected "--"!!
344344
destination = destination.replace("--", "-") # Sometimes there is an unexpected "--"!!
345345
if source.startswith("file-"):

0 commit comments

Comments
 (0)