aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-11-12 17:23:24 +0100
committerUlf Hermann <ulf.hermann@qt.io>2020-11-12 21:24:13 +0100
commit0bcf3f4485b912657e11f1ac560676c5538080fc (patch)
tree779fac5d0973f875eabcac06a2fd3fe53fbdc0a3 /tests
parent756d50e2127d9ac32b99cd1ed3471a3915c0de7f (diff)
qmltyperegistrar: Use QString rather than string for strings
All other type names are actual C++ type names. Also, correctly resolve qreal if its type is overridden at configure time. Change-Id: Ia2a1b4309f94e8c72461ee69005b1bdee6337370 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.cpp b/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.cpp
index 77f1f3b9cf..3d3a0e7fbd 100644
--- a/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.cpp
+++ b/tests/auto/qml/qmltyperegistrar/tst_qmltyperegistrar.cpp
@@ -81,7 +81,7 @@ void tst_qmltyperegistrar::superAndForeignTypes()
QVERIFY(qmltypesData.contains("prototype: \"SizeEnums\""));
QVERIFY(qmltypesData.contains("Property { name: \"height\"; type: \"int\" }"));
QVERIFY(qmltypesData.contains("Property { name: \"width\"; type: \"int\" }"));
- QVERIFY(qmltypesData.contains("Method { name: \"sizeToString\"; type: \"string\" }"));
+ QVERIFY(qmltypesData.contains("Method { name: \"sizeToString\"; type: \"QString\" }"));
}
void tst_qmltyperegistrar::accessSemantics()