aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/animators/tst_rotation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmltest/animators/tst_rotation.qml')
-rw-r--r--tests/auto/qmltest/animators/tst_rotation.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/auto/qmltest/animators/tst_rotation.qml b/tests/auto/qmltest/animators/tst_rotation.qml
index 8c29df0623..9ff4278527 100644
--- a/tests/auto/qmltest/animators/tst_rotation.qml
+++ b/tests/auto/qmltest/animators/tst_rotation.qml
@@ -42,12 +42,11 @@ Item {
TestCase {
id: testCase
name: "animators-rotation"
- when: !animation.running
+ when: box.rotation == 180
function test_endresult() {
compare(box.rotationChangeCounter, 1);
- compare(box.rotation, 180);
var image = grabImage(root);
- compare(image.pixel(50, 50), Qt.rgba(0, 0, 1));
+ verify(image.pixel(50, 50) == Qt.rgba(0, 0, 1));
}
}