aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/accessibility/data/checkbox.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-11-02 08:21:37 +0100
committerJ-P Nurmi <jpnurmi@qt.io>2016-11-02 09:24:53 +0000
commit08325282ecf445267255abf1aa184a09795cedae (patch)
tree4219bb9497b92957d92846e938cb75d76f1c20a0 /tests/auto/accessibility/data/checkbox.qml
parent189fe8349943a928dd0af50e90b8232a4bbe6acc (diff)
Cleanup and speedup tst_accessibility
Before: Totals: 37 passed, 0 failed, 0 skipped, 0 blacklisted, 6919ms After: Totals: 37 passed, 0 failed, 0 skipped, 0 blacklisted, 599ms Change-Id: I8376d74a265d30956cba1f2e290333a8efd70067 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'tests/auto/accessibility/data/checkbox.qml')
-rw-r--r--tests/auto/accessibility/data/checkbox.qml11
1 files changed, 2 insertions, 9 deletions
diff --git a/tests/auto/accessibility/data/checkbox.qml b/tests/auto/accessibility/data/checkbox.qml
index 9700663d..e70d7d83 100644
--- a/tests/auto/accessibility/data/checkbox.qml
+++ b/tests/auto/accessibility/data/checkbox.qml
@@ -1,13 +1,6 @@
import QtQuick 2.5
-import QtQuick.Window 2.2
import QtQuick.Controls 2.0
-Window {
- visible: true
-
- CheckBox {
- id: checkbox
- objectName: "checkbox"
- text: "CheckBox"
- }
+CheckBox {
+ text: "CheckBox"
}