diff options
author | Nate Graham <nate@kde.org> | 2021-05-25 07:59:30 -0600 |
---|---|---|
committer | Nate Graham <nate@kde.org> | 2021-05-25 07:59:30 -0600 |
commit | 4c590ede2cef74342aaf25eea9a32ee96c78b1aa (patch) | |
tree | 2da15a4dabb77bfa6b1a1838a52a2a91a2ec8092 /autotests/kconfigtest.cpp | |
parent | b3dc879e8b108c26c929bfbe551bcdf77f140e94 (diff) | |
download | kconfig-4c590ede2cef74342aaf25eea9a32ee96c78b1aa.tar.gz kconfig-4c590ede2cef74342aaf25eea9a32ee96c78b1aa.tar.bz2 |
Revert "fix deleted group is in listGroups"
This reverts commit b3dc879e8b108c26c929bfbe551bcdf77f140e94.
This change breaks plasmashell startup and possible other apps as well.
Reverting so the root cause can be investigated without time pressure.
Diffstat (limited to 'autotests/kconfigtest.cpp')
-rw-r--r-- | autotests/kconfigtest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotests/kconfigtest.cpp b/autotests/kconfigtest.cpp index e6a3e645..bf7882f0 100644 --- a/autotests/kconfigtest.cpp +++ b/autotests/kconfigtest.cpp @@ -802,7 +802,7 @@ void KConfigTest::testDelete() delgr.deleteGroup(); QVERIFY(!delgr.exists()); QVERIFY(!ct.hasGroup("Nested Group 3")); - QVERIFY(!ct.groupList().contains(QStringLiteral("Nested Group 3"))); + QVERIFY(ct.groupList().contains(QStringLiteral("Nested Group 3"))); KConfigGroup ng(&ct, "Nested Group 2"); QVERIFY(sc.hasGroup("Complex Types")); |