aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/qapp_like_a_macro_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/pysidetest/qapp_like_a_macro_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/qapp_like_a_macro_test.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sources/pyside6/tests/pysidetest/qapp_like_a_macro_test.py b/sources/pyside6/tests/pysidetest/qapp_like_a_macro_test.py
index 2a796cea8..2233b1b33 100644
--- a/sources/pyside6/tests/pysidetest/qapp_like_a_macro_test.py
+++ b/sources/pyside6/tests/pysidetest/qapp_like_a_macro_test.py
@@ -59,10 +59,11 @@ class qAppMacroTest(unittest.TestCase):
classes = (QtCore.QCoreApplication,
QtGui.QGuiApplication,
QtWidgets.QApplication)
+ fil = sys.stderr
for klass in classes:
- print("created", klass([]))
+ print("CREATED", klass([]), file=fil); fil.flush()
qApp.shutdown()
- print("deleted qApp", qApp)
+ print("DELETED qApp", qApp, file=fil); fil.flush()
# creating without deletion raises:
QtCore.QCoreApplication([])
with self.assertRaises(RuntimeError):