wdl
wdl copied to clipboard
Call statements have a syntax error in if_else.wdl unit test
These call statements in the if_else.wdl unit test are missing the input: statement:
https://github.com/openwdl/wdl/blob/9c0b9cf4586508a9e6260cc5c5e562e21f625aac/SPEC.md?plain=1#L6057
https://github.com/openwdl/wdl/blob/9c0b9cf4586508a9e6260cc5c5e562e21f625aac/SPEC.md?plain=1#L6062
The spec says that the only element a call statement can have is the input: keyword followed by a list. It looks like the call statements in the unit test are trying to pass in the list of inputs, and is just missing the input: keyword.
The same issue appears in the nested_if.wdl unit test:
https://github.com/openwdl/wdl/blob/9c0b9cf4586508a9e6260cc5c5e562e21f625aac/SPEC.md?plain=1#L6107