From ab9bca09eb869b2013c85fee232f1e62aed925f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Mon, 13 Sep 2021 17:30:49 +0200 Subject: qt: Fix build against Qt 5.9 * lang/qt/tests/t-keylist.cpp (KeyListTest::testListAllKeysSync): Ensure same type for both arguments of QCOMPARE. * lang/qt/tests/t-various.cpp (TestVarious::testSetExpire): Ensure same type for both arguments of QCOMPARE. -- Qt 5.9 does not yet have the generic qCompare helper which supports arguments of any type that can be compared with ==. GnuPG-bug-id: 5592 --- lang/qt/tests/t-keylist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lang/qt/tests/t-keylist.cpp') diff --git a/lang/qt/tests/t-keylist.cpp b/lang/qt/tests/t-keylist.cpp index 5875dfb4..dddcb738 100644 --- a/lang/qt/tests/t-keylist.cpp +++ b/lang/qt/tests/t-keylist.cpp @@ -151,7 +151,7 @@ private Q_SLOTS: delete job; QVERIFY(!result.error()); - QCOMPARE(secKeys.size(), 2u); + QCOMPARE(secKeys.size(), static_cast(2)); std::vector secKeyFingerprints = std::accumulate(secKeys.begin(), secKeys.end(), std::vector(), accumulateFingerprints); QCOMPARE(secKeyFingerprints, std::vector({ "23FD347A419429BACCD5E72D6BC4778054ACD246", @@ -162,7 +162,7 @@ private Q_SLOTS: QVERIFY(secKeys[0].subkeys()[0].keyGrip()); } - QCOMPARE(pubKeys.size(), 26u); + QCOMPARE(pubKeys.size(), static_cast(26)); std::vector pubKeyFingerprints = std::accumulate(pubKeys.begin(), pubKeys.end(), std::vector(), accumulateFingerprints); QCOMPARE(pubKeyFingerprints, std::vector({ "045B2334ADD69FC221076841A5E67F7FA3AE3EA1", -- cgit v1.2.3