summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript/data/attachedProperty.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlecmascript/data/attachedProperty.qml')
-rw-r--r--tests/auto/declarative/qmlecmascript/data/attachedProperty.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/qmlecmascript/data/attachedProperty.qml b/tests/auto/declarative/qmlecmascript/data/attachedProperty.qml
index c5088e3..061eda0 100644
--- a/tests/auto/declarative/qmlecmascript/data/attachedProperty.qml
+++ b/tests/auto/declarative/qmlecmascript/data/attachedProperty.qml
@@ -2,10 +2,10 @@ import Qt.test 1.0
import Qt.test 1.0 as Namespace
MyQmlObject {
- id: Me
+ id: me
property int a: MyQmlObject.value
property int b: Namespace.MyQmlObject.value
- property int c: Me.Namespace.MyQmlObject.value
- property int d: Me.Namespace.MyQmlObject.value
+ property int c: me.Namespace.MyQmlObject.value
+ property int d: me.Namespace.MyQmlObject.value
}