From 4498ad757f6309a8b4db234a0ff501c697a19d53 Mon Sep 17 00:00:00 2001 From: Jacob Boddey Date: Fri, 5 Jul 2024 17:44:00 +0100 Subject: [PATCH] Remove skipped result --- modules/test/base/python/src/test_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/test/base/python/src/test_module.py b/modules/test/base/python/src/test_module.py index 200a29a2b..00f74df82 100644 --- a/modules/test/base/python/src/test_module.py +++ b/modules/test/base/python/src/test_module.py @@ -125,9 +125,9 @@ def run_tests(self): test['description'] = 'No description was provided for this test' else: # TODO: This is assuming that result is an array but haven't checked - # Skipped result + # Error result if result[0] is None: - test['result'] = 'Skipped' + test['result'] = 'Error' if len(result) > 1: test['description'] = result[1] else: