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/QtCharts/qcharts_test.py | |
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/QtCharts/qcharts_test.py')
-rw-r--r-- | sources/pyside6/tests/QtCharts/qcharts_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtCharts/qcharts_test.py b/sources/pyside6/tests/QtCharts/qcharts_test.py index 07e33218a..2858bf296 100644 --- a/sources/pyside6/tests/QtCharts/qcharts_test.py +++ b/sources/pyside6/tests/QtCharts/qcharts_test.py @@ -65,7 +65,7 @@ class QChartsTestCase(UsesQApplication): chartView.resize(screenSize / 2) chartView.show() QTimer.singleShot(500, self.app.quit) - self.app.exec_() + self.app.exec() if __name__ == '__main__': |