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: