aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtQml/bug_814.py
diff options
context:
space:
mode:
authorFriedemann Kleint <[email protected]>2021-12-01 08:07:09 +0100
committerFriedemann Kleint <[email protected]>2021-12-01 09:27:35 +0100
commitac4431fcc71f01cde9bd1fd885d42960b869c924 (patch)
tree6150d12ac616885ca66ee0193dd591ce6f6174aa /sources/pyside6/tests/QtQml/bug_814.py
parentc94bc617282e0834ee71692e876d96d9d7ee7012 (diff)
tests: Add TimedQGuiApplication
It is sufficient for Gui and QML tests. Pick-to: 6.2 Change-Id: I6302c3d3f016fb95914f1754e794883cad69bce2 Reviewed-by: Cristian Maureira-Fredes <[email protected]>
Diffstat (limited to 'sources/pyside6/tests/QtQml/bug_814.py')
-rw-r--r--sources/pyside6/tests/QtQml/bug_814.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtQml/bug_814.py b/sources/pyside6/tests/QtQml/bug_814.py
index 599a95e87..ed9909bc1 100644
--- a/sources/pyside6/tests/QtQml/bug_814.py
+++ b/sources/pyside6/tests/QtQml/bug_814.py
@@ -47,7 +47,7 @@ from init_paths import init_test_paths
init_test_paths(False)
from helper.helper import quickview_errorstring
-from helper.timedqapplication import TimedQApplication
+from helper.timedqguiapplication import TimedQGuiApplication
from PySide6.QtCore import QUrl, QAbstractListModel, QModelIndex, Qt
from PySide6.QtQuick import QQuickView
@@ -73,7 +73,7 @@ class ListModel(QAbstractListModel):
return None
-class TestBug814(TimedQApplication):
+class TestBug814(TimedQGuiApplication):
def testAbstractItemModelTransferToQML(self):
view = QQuickView()
model = ListModel()