Fix auto test for tiling image.
The test was using a resolution that was too high for some of the CI machines. Changing the height to 480 is still high enough to test the tiling functionality. Task-number: QTBUG-26480 Change-Id: I40c731ae316471aeeafc8762a2d258adb2239c7b Reviewed-by: Toby Tomkins <toby.tomkins@nokia.com>
This commit is contained in:
parent
cb86525df6
commit
c87df269c0
|
@ -1,7 +1,7 @@
|
|||
import QtQuick 2.0
|
||||
|
||||
Rectangle {
|
||||
width: 200; height: 550
|
||||
width: 200; height: 480
|
||||
|
||||
Image {
|
||||
objectName: "tiling"; anchors.fill: parent
|
||||
|
|
|
@ -12,4 +12,3 @@ include (../shared/util.pri)
|
|||
TESTDATA = data/*
|
||||
|
||||
QT += core-private gui-private qml-private quick-private network testlib
|
||||
linux-*:system(". /etc/lsb-release && [ $DISTRIB_CODENAME = lucid ]"):CONFIG += insignificant_test
|
||||
|
|
Loading…
Reference in New Issue