aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlvaluetypes
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-31 15:54:15 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-06-08 07:42:32 +0000
commitb31e9cf4817112e5dbf567bb622fe3f70f38bfbf (patch)
tree65c2976580465d54eed01c5f4b8d418866ff2480 /tests/auto/qml/qqmlvaluetypes
parente80cc5dc6b02176b1339e51dc474049328e5cdbb (diff)
tst_qqmlengine::clearComponentCache(): Use QTemporaryDir
The test used to create a file temp.qml in the working directory. Put it into a temporary directory. Change-Id: I0720a4b4c652c83656505a5dc979660b94503717 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io> Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'tests/auto/qml/qqmlvaluetypes')
-rw-r--r--tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp b/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp
index 163ce11cb8..ce52afc862 100644
--- a/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp
+++ b/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp
@@ -1486,7 +1486,7 @@ void tst_qqmlvaluetypes::groupedInterceptors()
QQmlComponent component(&engine, testFileUrl(qmlfile));
QObject *object = component.create();
- QVERIFY(object != 0);
+ QVERIFY2(object != nullptr, qPrintable(component.errorString()));
QColor initialColor = object->property("color").value<QColor>();
QVERIFY(fuzzyCompare(initialColor.redF(), expectedInitialColor.redF()));