summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanimations
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-03-08 10:34:50 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-03-08 10:34:50 (GMT)
commit76615ac642ffbe2730321623c5f298bde6109b11 (patch)
treecdbb8b61236e17d77f25ed22f9906faf0aa5e15b /tests/auto/declarative/qdeclarativeanimations
parent9b06c2dd119f3c4442f7b26756728bb9c7fefb4a (diff)
downloadQt-76615ac642ffbe2730321623c5f298bde6109b11.zip
Qt-76615ac642ffbe2730321623c5f298bde6109b11.tar.gz
Qt-76615ac642ffbe2730321623c5f298bde6109b11.tar.bz2
Fix failing autotest.
This was probably a bug in the test data.
Diffstat (limited to 'tests/auto/declarative/qdeclarativeanimations')
-rw-r--r--tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml
index 3f00e68..408ad87 100644
--- a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml
+++ b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml
@@ -10,7 +10,7 @@ Rectangle {
width: 100; height: 100
color: Qt.rgba(1,0,0)
Behavior on x {
- NumberAnimation { objectName: "MyAnim"; target: redRect; property: "y"; to: 300; repeat: true}
+ NumberAnimation { id: myAnim; objectName: "MyAnim"; target: redRect; property: "y"; to: 300; repeat: true}
}
}