Skip to content
This repository was archived by the owner on Jul 24, 2020. It is now read-only.

Commit d0170c5

Browse files
authored
Merge pull request #128 from nsoranzo/test_output_name_error
Report a lint error if test output name does not match tool outputs
2 parents 11c46b7 + 35dc456 commit d0170c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

galaxy/tools/linters/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def lint_tsts(tool_xml, lint_ctx):
3333
lint_ctx.warn("Found output tag without a name defined.")
3434
else:
3535
if name not in output_data_names:
36-
lint_ctx.warn("Found output tag with unknown name [%s], valid names [%s]" % (name, output_data_names))
36+
lint_ctx.error("Found output tag with unknown name [%s], valid names [%s]" % (name, output_data_names))
3737

3838
for output_collection in test.findall("output_collection"):
3939
found_output_test = True

0 commit comments

Comments
 (0)