summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativebehaviors/data
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-04-13 02:49:20 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-04-13 05:02:22 (GMT)
commit317f947b4c9822f8a1bfecc4de68117ddabfb9cf (patch)
tree06c3a55c2c5c1de7d2fc3b65a211ffc8786c5564 /tests/auto/declarative/qdeclarativebehaviors/data
parent1d26855f7cb061ba3da9db62dbbd92f586931a41 (diff)
downloadQt-317f947b4c9822f8a1bfecc4de68117ddabfb9cf.zip
Qt-317f947b4c9822f8a1bfecc4de68117ddabfb9cf.tar.gz
Qt-317f947b4c9822f8a1bfecc4de68117ddabfb9cf.tar.bz2
Stabilize behaviors test.
Diffstat (limited to 'tests/auto/declarative/qdeclarativebehaviors/data')
-rw-r--r--tests/auto/declarative/qdeclarativebehaviors/data/binding.qml2
-rw-r--r--tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml b/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml
index e982f21..e9fb286 100644
--- a/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml
+++ b/tests/auto/declarative/qdeclarativebehaviors/data/binding.qml
@@ -9,7 +9,7 @@ Rectangle {
objectName: "MyRect"
width: 100; height: 100; color: "green"
x: basex
- Behavior on x { NumberAnimation { duration: 500; } }
+ Behavior on x { NumberAnimation { duration: 800; } }
}
MouseArea {
id: clicker
diff --git a/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml b/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml
index b22441a..795b309 100644
--- a/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml
+++ b/tests/auto/declarative/qdeclarativebehaviors/data/scripttrigger.qml
@@ -11,6 +11,6 @@ Rectangle {
id: rect
objectName: "MyRect"
width: 100; height: 100; color: "green"
- Behavior on x { NumberAnimation { duration: 500; } }
+ Behavior on x { NumberAnimation { duration: 800; } }
}
}