aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_430.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_430.py')
-rw-r--r--tests/QtGui/bug_430.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/QtGui/bug_430.py b/tests/QtGui/bug_430.py
index 256c4e203..8baa7c172 100644
--- a/tests/QtGui/bug_430.py
+++ b/tests/QtGui/bug_430.py
@@ -4,7 +4,7 @@ from PySide.QtGui import *
class ListModel(QAbstractListModel):
def rowCount(self, parent = QModelIndex()):
- return len(self._items)
+ return 0
app = QApplication([])
model = ListModel()