Added inverse case

This commit is contained in:
Ethan Looney
2020-11-05 13:05:15 -07:00
parent 48073fb678
commit 06f1a1870d

View File

@ -29205,6 +29205,9 @@ static int test_wolfSSL_GetLoggingCb (void)
if (wolfSSL_GetLoggingCb() == NULL) {
ret = 0;
}
if (wolfSSL_GetLoggingCb() != NULL) {
ret = -1;
}
}
printf(resultFmt, ret == 0 ? passed : failed);