Skip to content

Commit

Permalink
Rebase into main...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Sep 24, 2024
1 parent 332392e commit 77bea0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/verify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ def verify_file_contents_against_dict(
output_value = json.loads(output_content.decode("utf-8"))
if test_properties != output_value:
template = "Output [%s] value [%s] does not match expected value [%s]."
message = template % (output_id, output_value, test_properties)
message = template % (item_label, output_value, test_properties)
raise AssertionError(message)


Expand Down

0 comments on commit 77bea0b

Please sign in to comment.