aboutsummaryrefslogtreecommitdiff
path: root/autotests/test_kconfigutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/test_kconfigutils.cpp')
-rw-r--r--autotests/test_kconfigutils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/autotests/test_kconfigutils.cpp b/autotests/test_kconfigutils.cpp
index 576ef784..a57f0592 100644
--- a/autotests/test_kconfigutils.cpp
+++ b/autotests/test_kconfigutils.cpp
@@ -36,19 +36,19 @@ void TestKConfigUtils::testParseGroupString_data()
QTest::newRow("simple-group")
<< " group "
- << (QStringList() << "group")
+ << (QStringList() << QStringLiteral("group"))
<< true
;
QTest::newRow("sub-group")
<< "[group][sub]"
- << (QStringList() << "group" << "sub")
+ << (QStringList() << QStringLiteral("group") << QStringLiteral("sub"))
<< true
;
QTest::newRow("crazy-sub-group")
<< "[a\\ttab\\x5d[and some hex esc\\x61pe]"
- << (QStringList() << "a\ttab" << "and some hex escape")
+ << (QStringList() << QStringLiteral("a\ttab") << QStringLiteral("and some hex escape"))
<< true
;