From c3f585b8ee9c6239a2dcee8affdb70be83ebd043 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Fri, 30 Jan 2026 22:02:08 +0100 Subject: [PATCH] tests: ssl: fix typo in comment in test_mbedtls_ssl_get_supported_group_list Signed-off-by: Valerio Setti --- tests/suites/test_suite_ssl.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/test_suite_ssl.function b/tests/suites/test_suite_ssl.function index 55f9965542..a12acfe83e 100644 --- a/tests/suites/test_suite_ssl.function +++ b/tests/suites/test_suite_ssl.function @@ -3591,7 +3591,7 @@ void test_mbedtls_ssl_get_supported_group_list(int iana_group_id, int is_availab TEST_EQUAL(found, is_available); /* Second: check that supported/unsupported property for the specified group is also - * correctly set in the array initialized by MBEDTLS_SSL_IANA_TLS_GROUP_NONE. */ + * correctly set in the array initialized by MBEDTLS_SSL_IANA_TLS_GROUP_INFO. */ mbedtls_ssl_iana_tls_group_info_t group_info_table[] = MBEDTLS_SSL_IANA_TLS_GROUPS_INFO; mbedtls_ssl_iana_tls_group_info_t *ptr; for (ptr = &group_info_table[0]; ptr->tls_id != MBEDTLS_SSL_IANA_TLS_GROUP_NONE; ptr++) {