diff --git a/SPEC.md b/SPEC.md index 7dc9a32a..13e47531 100644 --- a/SPEC.md +++ b/SPEC.md @@ -1312,7 +1312,7 @@ workflow string_to_file { File path2 = path1 output { - Boolean paths_equal = infile == path3 + Boolean paths_equal = infile == path2 } } ``` @@ -3943,14 +3943,6 @@ Example output: "optional_output.file_array": ["example1.txt", null] } ``` - -Test config: - -```json -{ - "exclude_output": ["example1", "file_array"] -} -```

@@ -4581,7 +4573,7 @@ task test_hints { } command <<< - wc -l ~{foo} + wc -l < ~{foo} >>> output { @@ -4616,7 +4608,7 @@ Example output: ```json { - "test_hints.num_lines": 3 + "test_hints.num_lines": 2 } ```

@@ -4701,7 +4693,9 @@ Example input: Example output: ```json -{} +{ + "input_hint.experience": [] +} ```

@@ -8594,6 +8588,8 @@ Example output: ```json { + "test_transpose.expected": [[0, 3], [1, 4], [2, 5]], + "test_transpose.out": [[0, 3], [1, 4], [2, 5]], "test_transpose.is_true": true } ```