aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests/QtUiTools/bug_392.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/tests/QtUiTools/bug_392.py')
-rw-r--r--sources/pyside2/tests/QtUiTools/bug_392.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside2/tests/QtUiTools/bug_392.py b/sources/pyside2/tests/QtUiTools/bug_392.py
index 2439e7203..07db9802e 100644
--- a/sources/pyside2/tests/QtUiTools/bug_392.py
+++ b/sources/pyside2/tests/QtUiTools/bug_392.py
@@ -53,7 +53,7 @@ class BugTest(UsesQApplication):
filePath = os.path.join(os.path.dirname(__file__), 'action.ui')
result = loader.load(filePath, w)
- self.assertTrue(isinstance(result.actionFoo, QtWidgets.QAction))
+ self.assertTrue(isinstance(result.actionFoo, QtGui.QAction))
def testPythonCustomWidgets(self):
w = QtWidgets.QWidget()