Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2017-12-12 05:10:25 +0300
committerJonathan White <support@dmapps.us>2017-12-12 05:10:25 +0300
commit28ad6ed552fb5b44716b0275d946dbb7d544f432 (patch)
treeed9fc4d76e0aa742ef0a2eb02550b4ddf72d2cae /tests/TestSymmetricCipher.cpp
parent1bc2d58ae137b52b64c3133cae5164be21e4fdcb (diff)
parentcf94610f46eaf77e0c1dc9e6abc5fea3e0d00f49 (diff)
Merge branch 'master' into develop
Diffstat (limited to 'tests/TestSymmetricCipher.cpp')
-rw-r--r--tests/TestSymmetricCipher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TestSymmetricCipher.cpp b/tests/TestSymmetricCipher.cpp
index 74f720a7f..c1e947063 100644
--- a/tests/TestSymmetricCipher.cpp
+++ b/tests/TestSymmetricCipher.cpp
@@ -202,7 +202,7 @@ void TestSymmetricCipher::testTwofish256CbcEncryption()
bool ok;
for (int i = 0; i < keys.size(); ++i) {
- cipher.init(keys[i], ivs[i]);
+ QVERIFY(cipher.init(keys[i], ivs[i]));
QByteArray ptNext = plainTexts[i];
QByteArray ctPrev = ivs[i];
QByteArray ctCur;