aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_793.py
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <[email protected]>2021-04-30 17:48:19 +0200
committerCristian Maureira-Fredes <[email protected]>2021-05-04 15:24:45 +0200
commit64d5282e6e3d346ee10242812b2a17a6ef2c2c9f (patch)
tree7d46ea3c010b40861cdcb4e02403cd83895321f2 /sources/pyside6/tests/QtWidgets/bug_793.py
parent62acb997f7fce1ae922e3a9995272c78353048b9 (diff)
tests: use exec() instead of exec_()
Change-Id: I0868f70d7dfeafa7762296da5aa6efc2f32fcb5e Reviewed-by: Qt CI Bot <[email protected]> Reviewed-by: Christian Tismer <[email protected]>
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_793.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_793.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_793.py b/sources/pyside6/tests/QtWidgets/bug_793.py
index 40e3f85da..2a87a8750 100644
--- a/sources/pyside6/tests/QtWidgets/bug_793.py
+++ b/sources/pyside6/tests/QtWidgets/bug_793.py
@@ -67,4 +67,4 @@ class TestQApplicationDestrcutor(unittest.TestCase):
if __name__ == '__main__':
app = QApplication(sys.argv)
unittest.main()
- sys.exit(app.exec_())
+ sys.exit(app.exec())