diff options
-rw-r--r-- | tests/QtGui/bug_430.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/QtGui/bug_430.py b/tests/QtGui/bug_430.py index 256c4e2..8baa7c1 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() |