From 47b8b84203b17a899af3d84e5951cb3b34a9ca14 Mon Sep 17 00:00:00 2001 From: Jacob Boddey Date: Fri, 9 Aug 2024 13:09:29 +0100 Subject: [PATCH] Remove recommendations on error --- framework/python/src/common/session.py | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/python/src/common/session.py b/framework/python/src/common/session.py index d80ad023b..20820c506 100644 --- a/framework/python/src/common/session.py +++ b/framework/python/src/common/session.py @@ -370,6 +370,7 @@ def add_test_result(self, result): def set_test_result_error(self, result): """Set test result error""" result.result = 'Error' + result.recommendations = None self._results.append(result) def add_module_report(self, module_report):