diff --git a/make/DEBIAN/control b/make/DEBIAN/control index 7b2c0be20..6758b3f49 100644 --- a/make/DEBIAN/control +++ b/make/DEBIAN/control @@ -1,5 +1,5 @@ Package: Testrun -Version: 2.3.1-beta.3 +Version: 2.3.1-beta.4 Architecture: amd64 Maintainer: Google Homepage: https://github.com/google/testrun diff --git a/modules/test/tls/python/src/tls_module.py b/modules/test/tls/python/src/tls_module.py index f20e4686c..c2ffef216 100644 --- a/modules/test/tls/python/src/tls_module.py +++ b/modules/test/tls/python/src/tls_module.py @@ -530,12 +530,13 @@ def _security_tls_v1_0_client(self): else: result_state = False result_message = 'TLS 1.0 or higher was not detected' - result_details = [ + result_details = tuple({ *tls_1_0_valid[2], *tls_1_1_valid[2], *tls_1_2_valid[2], *tls_1_3_valid[2] - ] + }) + LOGGER.info(f'TLS 1.0 Client Validation details: {result_details}') result_tags = list( set(tls_1_0_valid[3] + tls_1_1_valid[3] + tls_1_2_valid[3] + tls_1_3_valid[3]))