From 26c7592d4be67418cbd16dc79232fd83e0cad143 Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Thu, 2 Sep 2021 17:38:04 -0400 Subject: [PATCH] leantls only supports secp256r1. --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index e040a4384..7cc760571 100644 --- a/tests/api.c +++ b/tests/api.c @@ -43366,7 +43366,7 @@ static int test_tls13_apis(void) int outSz; #endif #if defined(HAVE_ECC) && defined(HAVE_SUPPORTED_CURVES) - int groups[2] = { WOLFSSL_ECC_SECP256R1, WOLFSSL_ECC_SECP384R1 }; + int groups[2] = { WOLFSSL_ECC_SECP256R1, WOLFSSL_ECC_SECP256R1 }; int bad_groups[2] = { 0xDEAD, 0xBEEF }; int numGroups = 2; #endif