From b0157262b43e130db964dd019bd786e470c6d071 Mon Sep 17 00:00:00 2001 From: Jacob Boddey Date: Tue, 18 Jun 2024 16:05:59 +0100 Subject: [PATCH] Correct result on tls client test --- modules/test/tls/python/src/tls_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/test/tls/python/src/tls_module.py b/modules/test/tls/python/src/tls_module.py index 4da1f2e1b..9aab1b782 100644 --- a/modules/test/tls/python/src/tls_module.py +++ b/modules/test/tls/python/src/tls_module.py @@ -285,10 +285,10 @@ def _security_tls_v1_2_client(self): result = 'Feature Not Detected' elif results[0]: description = 'TLS 1.2 client connections valid' - result = 'True' + result = True else: description = 'TLS 1.2 client connections invalid' - result = 'False' + result = False return result, description, results[1] else: LOGGER.error('Could not resolve device IP address. Skipping')