aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfigtest.cpp
diff options
context:
space:
mode:
authorChristophe Giboudeaux <christophe@krop.fr>2021-07-13 23:20:57 +0200
committerChristophe Giboudeaux <christophe@krop.fr>2021-07-13 23:20:57 +0200
commit3471f19fc56e41b2ee6236ea3016dfa30a76c0ff (patch)
tree2615e5a9349c20f95be9d9abbccde367b2eb6eeb /autotests/kconfigtest.cpp
parent530f9490749505221d137343f1bd556821b820da (diff)
downloadkconfig-3471f19fc56e41b2ee6236ea3016dfa30a76c0ff.tar.gz
kconfig-3471f19fc56e41b2ee6236ea3016dfa30a76c0ff.tar.bz2
Fix typos found by codespell
GIT_SILENT
Diffstat (limited to 'autotests/kconfigtest.cpp')
-rw-r--r--autotests/kconfigtest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotests/kconfigtest.cpp b/autotests/kconfigtest.cpp
index d8cc417d..49f22d1b 100644
--- a/autotests/kconfigtest.cpp
+++ b/autotests/kconfigtest.cpp
@@ -822,7 +822,7 @@ void KConfigTest::testDelete()
QVERIFY(sc.entryMap(QStringLiteral("Complex Types")).isEmpty());
QVERIFY(sc.entryMap(QStringLiteral("AAA")).isEmpty());
QVERIFY(!sc.entryMap(QStringLiteral("Hello")).isEmpty()); // not deleted group
- QVERIFY(sc.entryMap(QStringLiteral("FooBar")).isEmpty()); // inexistant group
+ QVERIFY(sc.entryMap(QStringLiteral("FooBar")).isEmpty()); // inexistent group
QVERIFY(cg.sync());
// Check what happens on disk
@@ -999,7 +999,7 @@ void KConfigTest::testCascadingWithLocale()
QCOMPARE(group.readEntry("FromGlobal"), QStringLiteral("vrai"));
QCOMPARE(group.readEntry("FromLocal"), QStringLiteral("vrai"));
QCOMPARE(group.readEntry("Name"), QStringLiteral("FR"));
- QCOMPARE(group.readEntry("Other"), QStringLiteral("English Only")); // Global_FR is locally overriden
+ QCOMPARE(group.readEntry("Other"), QStringLiteral("English Only")); // Global_FR is locally overridden
qputenv("XDG_CONFIG_DIRS", oldConfigDirs);
#endif
}