mirror of
https://github.com/QuasarApp/qca.git
synced 2025-04-26 03:24:31 +00:00
Fix wrong condition protecting test execution
This commit is contained in:
parent
7ead054437
commit
e9fd31b4a1
@ -2574,7 +2574,7 @@ void CipherUnitTest::des_cbc_pkcs7()
|
||||
{
|
||||
bool anyProviderTested = false;
|
||||
foreach (const QString provider, providersToTest) {
|
||||
if (!QCA::isSupported("des-cbc-pkcs7", provider)) {
|
||||
if (QCA::isSupported("des-cbc-pkcs7", provider)) {
|
||||
anyProviderTested = true;
|
||||
QFETCH(QString, plainText);
|
||||
QFETCH(QString, cipherText);
|
||||
|
Loading…
x
Reference in New Issue
Block a user