From 9da9817f890115fe64b64fa903511815bf1c96be Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Tue, 22 Apr 2025 10:09:01 -0600 Subject: [PATCH] move test case to the correct location for stub macro guard --- tests/api.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/api.c b/tests/api.c index f49a5c52f..a8449cc71 100644 --- a/tests/api.c +++ b/tests/api.c @@ -28725,9 +28725,6 @@ static int test_wolfSSL_BN_CTX(void) ExpectNotNull(bn_ctx = BN_CTX_new()); - /* No implementation. */ - BN_CTX_init(NULL); - ExpectNull(BN_CTX_get(NULL)); ExpectNotNull(BN_CTX_get(bn_ctx)); ExpectNotNull(BN_CTX_get(bn_ctx)); @@ -28740,6 +28737,7 @@ static int test_wolfSSL_BN_CTX(void) /* No implementation. */ BN_CTX_start(NULL); BN_CTX_start(bn_ctx); + BN_CTX_init(NULL); #endif BN_CTX_free(NULL);