We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df486d8 commit aab90d7Copy full SHA for aab90d7
1 file changed
tests/api.c
@@ -10304,9 +10304,9 @@ static int test_wolfSSL_clear_secure_renegotiation(void)
10304
ExpectIntEQ(WOLFSSL_SUCCESS, wolfSSL_clear(ssl));
10305
if (EXPECT_SUCCESS()) {
10306
support = wolfSSL_SSL_get_secure_renegotiation_support(ssl);
10307
+ ExpectNull(ssl->secure_renegotiation);
10308
+ ExpectIntEQ(WOLFSSL_FAILURE, support);
10309
}
- ExpectNull(ssl->secure_renegotiation);
- ExpectIntEQ(WOLFSSL_FAILURE, support);
10310
10311
wolfSSL_free(ssl);
10312
wolfSSL_CTX_free(ctx);
0 commit comments