aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qquickuniversalstyle
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2020-03-26 17:01:51 +0100
committerMitch Curtis <mitch.curtis@qt.io>2020-08-26 11:46:00 +0200
commitd451cab0c8b727fa7f12a169a3d6ee449a3a1902 (patch)
tree8ce125b91fa050fdc0e9f0a1b95408fa5ab74f9d /tests/auto/qquickuniversalstyle
parent44847322109bd237498f3f74c4784bf27757a810 (diff)
Remove all version numbers from QML imports
As of Qt 6, the latest version will be used by default. This saves us a lot of effort in terms of version bumps. Task-number: QTBUG-82922 Change-Id: I74eba8185ec3ccc75bc293d4b2ea87d59e2d9928 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests/auto/qquickuniversalstyle')
-rw-r--r--tests/auto/qquickuniversalstyle/data/tst_universal.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/qquickuniversalstyle/data/tst_universal.qml b/tests/auto/qquickuniversalstyle/data/tst_universal.qml
index 0926cae3..356df731 100644
--- a/tests/auto/qquickuniversalstyle/data/tst_universal.qml
+++ b/tests/auto/qquickuniversalstyle/data/tst_universal.qml
@@ -48,11 +48,11 @@
**
****************************************************************************/
-import QtQuick 2.12
-import QtQuick.Window 2.2
-import QtTest 1.0
-import QtQuick.Controls 2.12
-import QtQuick.Controls.Universal 2.12
+import QtQuick
+import QtQuick.Window
+import QtTest
+import QtQuick.Controls
+import QtQuick.Controls.Universal
TestCase {
id: testCase
@@ -416,7 +416,7 @@ TestCase {
verify(window)
verify(window.pane)
- var control = Qt.createQmlObject("import QtQuick.Controls 2.1; " + data.type + " { }", window.pane)
+ var control = Qt.createQmlObject("import QtQuick.Controls; " + data.type + " { }", window.pane)
verify(control)
compare(control.font[data.attribute], data.value)