aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlproperty/data/invalidBinding.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlproperty/data/invalidBinding.qml')
-rw-r--r--tests/auto/qml/qqmlproperty/data/invalidBinding.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qqmlproperty/data/invalidBinding.qml b/tests/auto/qml/qqmlproperty/data/invalidBinding.qml
index e2bb1d172d..9364cdaea7 100644
--- a/tests/auto/qml/qqmlproperty/data/invalidBinding.qml
+++ b/tests/auto/qml/qqmlproperty/data/invalidBinding.qml
@@ -4,7 +4,7 @@ Item {
property Text text: myText
property Rectangle rectangle1: myText
- property Rectangle rectangle2: eval('getMyText()') // eval to force non-shared (v8) binding
+ property Rectangle rectangle2: getMyText()
function getMyText() { return myText; }