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:
authorJanek Bevendorff <janek@jbev.net>2018-01-13 04:47:02 +0300
committerJonathan White <support@dmapps.us>2018-01-13 22:25:02 +0300
commit90380adc901536ddbc0bf6d4b4dea3eff93b414f (patch)
treeed8840afe8c0be677754b8d67065025ad0ae43d7 /tests/TestKeePass1Reader.cpp
parent824607080a5fda83e6d667b076f99a607b09721d (diff)
Fix test compilation errors
* Use legacy AES-KDF mode for KeePass1Reader
Diffstat (limited to 'tests/TestKeePass1Reader.cpp')
-rw-r--r--tests/TestKeePass1Reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TestKeePass1Reader.cpp b/tests/TestKeePass1Reader.cpp
index c372c8715..a4ad56ca6 100644
--- a/tests/TestKeePass1Reader.cpp
+++ b/tests/TestKeePass1Reader.cpp
@@ -110,7 +110,7 @@ void TestKeePass1Reader::testBasic()
void TestKeePass1Reader::testMasterKey()
{
QVERIFY(m_db->hasKey());
- QCOMPARE(m_db->kdf()->rounds(), static_cast<quint64>(713));
+ QCOMPARE(m_db->kdf()->rounds(), 713);
}
void TestKeePass1Reader::testCustomIcons()