Skip to content

Commit ff29a9a

Browse files
author
Peter Amstutz
committed
Normalize before assert to pass on Windows
1 parent 2f60704 commit ff29a9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_load_tool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def test_checklink_outputSource():
5555

5656
loadingContext = LoadingContext({"do_validate": True})
5757
tool = load_tool(get_data("tests/wf/1st-workflow.cwl"), loadingContext)
58-
assert tool.tool["outputs"][0]["outputSource"] == outsrc
58+
assert norm(tool.tool["outputs"][0]["outputSource"]) == outsrc
5959

6060
loadingContext = LoadingContext({"do_validate": False})
6161
tool = load_tool(get_data("tests/wf/1st-workflow.cwl"), loadingContext)
62-
assert tool.tool["outputs"][0]["outputSource"] == outsrc
62+
assert norm(tool.tool["outputs"][0]["outputSource"]) == outsrc

0 commit comments

Comments
 (0)