From 188a69e6497af85d41849eac29d35ebfe30ee6b9 Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Fri, 2 Feb 2024 18:29:15 +0100 Subject: [PATCH] test_wolfSSL_OPENSSL_hexstr2buf: test was always skipped --- tests/api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api.c b/tests/api.c index d9c75f675..7f53844cc 100644 --- a/tests/api.c +++ b/tests/api.c @@ -47311,7 +47311,7 @@ static int test_wolfSSL_OPENSSL_hexstr2buf(void) long len = 0; unsigned char* returnedBuf = NULL; - for (i = 0; i < NUM_CASES && EXPECT_SUCCESS(); ++i) { + for (i = 0; i < NUM_CASES && !EXPECT_FAIL(); ++i) { returnedBuf = wolfSSL_OPENSSL_hexstr2buf(inputs[i], &len); if (returnedBuf == NULL) { ExpectIntEQ(expectedOutputs[i].ret, 0);