summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp')
-rw-r--r--tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp b/tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp
index 25d392b37e..de911b7aa4 100644
--- a/tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp
+++ b/tests/auto/corelib/io/qurlquery/tst_qurlquery.cpp
@@ -27,7 +27,7 @@
****************************************************************************/
#include <QtCore/QUrlQuery>
-#include <QtTest/QtTest>
+#include <QTest>
typedef QList<QPair<QString, QString> > QueryItems;
Q_DECLARE_METATYPE(QueryItems)
@@ -73,11 +73,11 @@ static QString prettyElement(const QString &key, const QString &value)
if (key.isNull())
result += "null -> ";
else
- result += '"' % key % "\" -> ";
+ result += '"' + key + "\" -> ";
if (value.isNull())
result += "null";
else
- result += '"' % value % '"';
+ result += '"' + value + '"';
return result;
}