Pass arguments in correct order to QCOMPARE

It is actual, expected .
This commit is contained in:
Àlex Fiestas 2014-09-13 00:50:46 +02:00
parent f20f489999
commit 21712668ee

View file

@ -139,7 +139,7 @@ void NetworkPackageTests::networkPackageEncryptionTest()
original.decrypt(privateKey, &decrypted);
QByteArray decryptedJson = decrypted.serialize();
QCOMPARE(QString(json), QString(decryptedJson));
QCOMPARE(QString(decryptedJson), QString(json));
}