From 77933bc38222ad368c824a01838f3951682fd090 Mon Sep 17 00:00:00 2001 From: Apoorv Kothari Date: Wed, 27 Nov 2024 10:33:24 -0800 Subject: [PATCH] comment --- tests/unit/s2n_client_supported_groups_extension_test.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/unit/s2n_client_supported_groups_extension_test.c b/tests/unit/s2n_client_supported_groups_extension_test.c index a50ef7783e9..58cbe1d9da9 100644 --- a/tests/unit/s2n_client_supported_groups_extension_test.c +++ b/tests/unit/s2n_client_supported_groups_extension_test.c @@ -264,8 +264,9 @@ int main() DEFER_CLEANUP(struct s2n_config *config = s2n_config_new(), s2n_config_ptr_free); EXPECT_NOT_NULL(config); - /* Since these tests are directly setting security_policy_override, set a - * s2n_config that doesn't support PQ but does support x25519 and TLS 1.3 + /* These tests explicitly set security_policy_override to test ECC + * selection logic and expect a s2n_config that does support x25519 and + * TLS 1.3, but does not support PQ. */ EXPECT_SUCCESS(s2n_config_set_cipher_preferences(config, "20240503"));