aboutsummaryrefslogtreecommitdiff
path: root/autotests
diff options
context:
space:
mode:
Diffstat (limited to 'autotests')
-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
}