aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_693.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_693.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_693.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_693.py b/sources/pyside6/tests/QtWidgets/bug_693.py
index 9f5b0f068..dea191aaf 100644
--- a/sources/pyside6/tests/QtWidgets/bug_693.py
+++ b/sources/pyside6/tests/QtWidgets/bug_693.py
@@ -49,6 +49,7 @@ class MyModel (QAbstractListModel):
def data(self, index, role):
return self.stupidLine
+
class TestBug693(unittest.TestCase):
def testIt(self):
app = QApplication([])
@@ -62,6 +63,5 @@ class TestBug693(unittest.TestCase):
MyModel.stupidLine.isNull()
-
if __name__ == "__main__":
unittest.main()