aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/animators/tst_parallel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qmltest/animators/tst_parallel.qml')
-rw-r--r--tests/auto/qmltest/animators/tst_parallel.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qmltest/animators/tst_parallel.qml b/tests/auto/qmltest/animators/tst_parallel.qml
index e9efbda237..7702dd7dd8 100644
--- a/tests/auto/qmltest/animators/tst_parallel.qml
+++ b/tests/auto/qmltest/animators/tst_parallel.qml
@@ -49,8 +49,8 @@ Item {
compare(box.scale, 2);
compare(box.rotation, 180);
var image = grabImage(root);
- compare(image.pixel(0, 0), Qt.rgba(0, 0, 1, 1));
- compare(image.pixel(199, 199), Qt.rgba(1, 0, 0, 1));
+ verify(image.pixel(0, 0) == Qt.rgba(0, 0, 1));
+ verify(image.pixel(199, 199) == Qt.rgba(1, 0, 0));
}
}