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')