diff options
| author | Christian Tismer <tismer@stackless.com> | 2021-05-16 12:24:00 +0200 |
|---|---|---|
| committer | Christian Tismer <tismer@stackless.com> | 2023-03-16 17:32:29 +0100 |
| commit | f668df2e26803989a4d4730ae219767bc9f229a9 (patch) | |
| tree | 3da8c28021ec65c4d0e359302d93975ccc5ec6ad /sources/pyside6/tests/QtOpenGL/qopenglwindow_test.py | |
| parent | 6d6f614fdd7510a1b8a00a51bb6232a3d151523b (diff) | |
testing: modernize UsesQApplication and remove other versions
The last change to UsesQApplication can be generalized to
be able to remove the QtCore and QtGui versions.
Instead, the module and class to use are computed from the
content of sys.modules .
Task-number: PYSIDE-1564
Change-Id: Iac1fe3a2d6bb5a9f7638eb889f55b079cb55c272
Pick-to: 6.4
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside6/tests/QtOpenGL/qopenglwindow_test.py')
| -rw-r--r-- | sources/pyside6/tests/QtOpenGL/qopenglwindow_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtOpenGL/qopenglwindow_test.py b/sources/pyside6/tests/QtOpenGL/qopenglwindow_test.py index 3a5cd0bbe..821281761 100644 --- a/sources/pyside6/tests/QtOpenGL/qopenglwindow_test.py +++ b/sources/pyside6/tests/QtOpenGL/qopenglwindow_test.py @@ -12,7 +12,7 @@ sys.path.append(os.fspath(Path(__file__).resolve().parents[1])) from init_paths import init_test_paths init_test_paths(False) -from helper.usesqguiapplication import UsesQGuiApplication +from helper.usesqapplication import UsesQApplication from PySide6.QtCore import QSize, QTimer, Qt from PySide6.QtGui import (QColor, QGuiApplication, QImage, QOpenGLContext, @@ -77,7 +77,7 @@ class OpenGLWindow(QOpenGLWindow): self.m_functions.glViewport(0, 0, self.width(), self.height()) -class QOpenGLWindowTest(UsesQGuiApplication): +class QOpenGLWindowTest(UsesQApplication): # On macOS, glClear(), glViewport() are rejected due to GLbitfield/GLint not being resolved properly def test(self): openGlWindow = OpenGLWindow() |
