aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml')
-rw-r--r--tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml b/tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml
index 12a76d7e7d..dd110d20ee 100644
--- a/tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml
+++ b/tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml
@@ -10,12 +10,12 @@ Item {
objectName: "msco"
}
- property int pointListLength: 0
- property variant pointList
+ property int typeListLength: 0
+ property variant typeList
function performTest() {
- // we have NOT registered QList<QPoint> as a type
- pointListLength = msco.pointListProperty.length;
- pointList = msco.pointListProperty;
+ // we have NOT registered QList<NonRegisteredType> as a type
+ typeListLength = msco.typeListProperty.length;
+ typeList = msco.typeListProperty;
}
}