Skip to content

Commit

Permalink
Merge pull request #1402 from mvdbeek/fix_test_result_download
Browse files Browse the repository at this point in the history
Fix test result download
  • Loading branch information
mvdbeek authored Oct 31, 2023
2 parents ed3f4b0 + 53c0c35 commit 46f342e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo/runnable.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def get_output(self, output_id):

def structured_data(self, test_case: Optional[TestCase] = None) -> Dict[str, Any]:
output_problems = []
if isinstance(self, SuccessfulRunResponse) and self.was_successful:
if self.was_successful:
execution_problem = None
if test_case:
for output_id, output_test in test_case.output_expectations.items():
Expand Down

0 comments on commit 46f342e

Please sign in to comment.