aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-10-02 17:31:10 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-10-05 14:56:26 +0200
commit1b8987ffcc85d0b53c2d688b4e8901f938fdbc44 (patch)
tree83611453cd08dee73fb4805b5be349a0cc3ff2a5 /tests/auto/qml/qmllint/data
parent1b4a2f5def7fc3e9f5b2362a70130d0333d3cfaa (diff)
qmllint: Mark anchors3.qml as dirty
This is in fact invalid QML. The assignment shouldn't be accepted but qmllint cannot see that, yet. Change-Id: Ifcb2f01edaf10ada5ce4d762726c51af3b4f5087 Reviewed-by: Maximilian Goldstein <max.goldstein@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests/auto/qml/qmllint/data')
-rw-r--r--tests/auto/qml/qmllint/data/anchors3.qml2
-rw-r--r--tests/auto/qml/qmllint/data/nanchors3.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/qmllint/data/anchors3.qml b/tests/auto/qml/qmllint/data/anchors3.qml
index 290b19f98b..2728291651 100644
--- a/tests/auto/qml/qmllint/data/anchors3.qml
+++ b/tests/auto/qml/qmllint/data/anchors3.qml
@@ -1,6 +1,6 @@
import QtQuick 2.15
-Rectangle {
+Rectangle {
anchors.horizontalCenter: parent
anchors.verticalCenter: parent
}
diff --git a/tests/auto/qml/qmllint/data/nanchors3.qml b/tests/auto/qml/qmllint/data/nanchors3.qml
index 4ba987ed9c..0ac2b62e3d 100644
--- a/tests/auto/qml/qmllint/data/nanchors3.qml
+++ b/tests/auto/qml/qmllint/data/nanchors3.qml
@@ -1,6 +1,6 @@
import QtQuick 2.15
-Rectangle {
+Rectangle {
nanchors.horizontalCenter: parent
nanchors.verticalCenter: parent
}