aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtCore/deletelater_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtCore/deletelater_test.py')
-rw-r--r--sources/pyside6/tests/QtCore/deletelater_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/pyside6/tests/QtCore/deletelater_test.py b/sources/pyside6/tests/QtCore/deletelater_test.py
index 1d8dff895..96927780d 100644
--- a/sources/pyside6/tests/QtCore/deletelater_test.py
+++ b/sources/pyside6/tests/QtCore/deletelater_test.py
@@ -42,6 +42,7 @@ init_test_paths(False)
from PySide6.QtCore import QObject, QTimer, QCoreApplication, SIGNAL
from helper.usesqcoreapplication import UsesQCoreApplication
+
class TestDeleteLater(UsesQCoreApplication):
'''Test case for function DeleteLater'''
@@ -52,6 +53,7 @@ class TestDeleteLater(UsesQCoreApplication):
QTimer.singleShot(100, self.app.quit)
self.app.exec_()
+
if __name__ == '__main__':
unittest.main()