[neon/3rdparty/libaccounts-qt/Neon/unstable] debian/patches: grr, again
Scarlett Moore
null at kde.org
Tue Sep 19 19:07:27 BST 2023
Git commit 60899cf45a3a460747198a3564d42c136e1a5f30 by Scarlett Moore.
Committed on 19/09/2023 at 20:07.
Pushed by scarlettmoore into branch 'Neon/unstable'.
grr, again
M +10 -4 debian/patches/commit-ca0447d
https://invent.kde.org/neon/3rdparty/libaccounts-qt/-/commit/60899cf45a3a460747198a3564d42c136e1a5f30
diff --git a/debian/patches/commit-ca0447d b/debian/patches/commit-ca0447d
index 733ef2b..6a682ea 100644
--- a/debian/patches/commit-ca0447d
+++ b/debian/patches/commit-ca0447d
@@ -1,4 +1,4 @@
-From 59b2c94e0f5ac7dc77163805ea7bda6be72e8137 Mon Sep 17 00:00:00 2001
+From 63e3c01c34e6848575c286ed4d051717eb9ef3ed Mon Sep 17 00:00:00 2001
From: Scarlett Moore <sgmoore at kde.org>
Date: Tue, 19 Sep 2023 10:29:27 -0700
Subject: Fix tags test as class QList<QString>’ {aka ‘class QList<QString>’}
@@ -10,15 +10,21 @@ Content-Transfer-Encoding: 8bit
diff --git a/tests/tst_libaccounts.cpp b/tests/tst_libaccounts.cpp
-index 471e3d5..e406a59 100644
+index 471e3d5..48cb662 100644
--- a/tests/tst_libaccounts.cpp
+++ b/tests/tst_libaccounts.cpp
-@@ -326,7 +326,7 @@ void AccountsTest::testService()
+@@ -326,11 +326,11 @@ void AccountsTest::testService()
QCOMPARE(service.description(), QStringLiteral("Test description"));
QCOMPARE(service.iconName(), QString("general_myservice"));
QCOMPARE(service.trCatalog(), QString("accounts"));
- QStringList tags;
+ QSet<QString> tags;
tags << "email" << "e-mail";
- QCOMPARE(service.tags(), tags.toSet());
+- QCOMPARE(service.tags(), tags.toSet());
++ QCOMPARE(service.tags(), tags.toQSet());
// Called twice, because the second time it returns a cached result
+- QCOMPARE(service.tags(), tags.toSet());
++ QCOMPARE(service.tags(), tags.toQSet());
+ QVERIFY(service.hasTag("email"));
+ QVERIFY(!service.hasTag("chat"));
+
More information about the Neon-commits
mailing list