From 41766f9b0eadfb817718173c9fde5a7825856cbe Mon Sep 17 00:00:00 2001 From: Aliaksandr Nikitsin Date: Thu, 19 Feb 2026 18:45:39 +0100 Subject: [PATCH 1/2] get only unique values for TLS 1.0 details --- modules/test/tls/python/src/tls_module.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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])) From 22ab260aae522a49c3e98f68178880a9595dec06 Mon Sep 17 00:00:00 2001 From: kurilova Date: Mon, 23 Feb 2026 12:05:39 +0000 Subject: [PATCH 2/2] Update version --- make/DEBIAN/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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