aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-01-02 11:02:39 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-01-03 09:51:37 +0000
commit68a2c7a94439812f964bcb2ead4cd2cbb88d49a5 (patch)
tree9185994009fcf0ada28d7aff2344237800643ac1 /tests
parent1c1d6024a30bc043af8adcc9195f4968ffd3388a (diff)
Fix build with Qt 5.6
Change-Id: I6a8ff3557bbaa5e38f3df0f4334e5d0331349565 Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/language/tst_language.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/language/tst_language.cpp b/tests/auto/language/tst_language.cpp
index 0fbf3ab15..a88fb1b35 100644
--- a/tests/auto/language/tst_language.cpp
+++ b/tests/auto/language/tst_language.cpp
@@ -2371,7 +2371,7 @@ void TestLanguage::qbsPropertyConvenienceOverride()
QVERIFY(!!project);
QCOMPARE(project->products.count(), 1);
QCOMPARE(project->products.first()->moduleProperties->qbsPropertyValue("installPrefix")
- .toString(), "/opt");
+ .toString(), QString("/opt"));
}
catch (const ErrorInfo &e) {
qDebug() << e.toString();