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