diff --git a/tests/api/test_evp.c b/tests/api/test_evp.c index 0f6f90a9d..bfa2a2a6e 100644 --- a/tests/api/test_evp.c +++ b/tests/api/test_evp.c @@ -74,7 +74,7 @@ int test_wolfSSL_EVP_CIPHER_type_string(void) EXPECT_DECLS; #ifdef OPENSSL_EXTRA const char* cipherStr; - + /* Test with valid cipher types */ #ifndef NO_AES #ifdef WOLFSSL_AES_128 @@ -94,7 +94,7 @@ int test_wolfSSL_EVP_CIPHER_type_string(void) cipherStr = wolfSSL_EVP_CIPHER_type_string(WC_NULL_CIPHER_TYPE); ExpectNotNull(cipherStr); ExpectStrEQ(cipherStr, "NULL"); - + /* Test with invalid cipher type */ cipherStr = wolfSSL_EVP_CIPHER_type_string(0xFFFF); ExpectNull(cipherStr);