diff options
author | Cristian Maureira-Fredes <[email protected]> | 2021-04-30 17:48:19 +0200 |
---|---|---|
committer | Cristian Maureira-Fredes <[email protected]> | 2021-05-04 15:24:45 +0200 |
commit | 64d5282e6e3d346ee10242812b2a17a6ef2c2c9f (patch) | |
tree | 7d46ea3c010b40861cdcb4e02403cd83895321f2 /sources/pyside6/tests/Qt3DExtras | |
parent | 62acb997f7fce1ae922e3a9995272c78353048b9 (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/Qt3DExtras')
-rw-r--r-- | sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py b/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py index 19fe1a9f0..8d5a95cfc 100644 --- a/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py +++ b/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py @@ -159,7 +159,7 @@ class Qt3DExtrasTestCase(UsesQGuiApplication): while not window.isExposed(): self.app.processEvents() QTimer.singleShot(2000, self.app.quit) - self.app.exec_() + self.app.exec() if __name__ == '__main__': |