From 500de5d3b9095b2b31258675bb558163b0bbe52c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Fritze?= Date: Mon, 27 Dec 2021 13:50:44 +0100 Subject: [PATCH] [opengl] fix QGLFrameBufferObject spelling --- qtpy/tests/test_qtopengl.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qtpy/tests/test_qtopengl.py b/qtpy/tests/test_qtopengl.py index 502aff0a..cc5fd141 100644 --- a/qtpy/tests/test_qtopengl.py +++ b/qtpy/tests/test_qtopengl.py @@ -1,6 +1,7 @@ import pytest from qtpy import PYSIDE2, PYSIDE6, PYQT5, PYQT6 + def test_qtopengl(): """Test the qtpy.QtOpenGL namespace""" from qtpy import QtOpenGL @@ -12,8 +13,8 @@ def test_qtopengl(): assert QtOpenGL.QGLColormap is not None assert QtOpenGL.QGLContext is not None assert QtOpenGL.QGLFormat is not None - assert QtOpenGL.QGLFrameBufferObject is not None - assert QtOpenGL.QGLFrameBufferObjectFormat is not None + assert QtOpenGL.QGLFramebufferObject is not None + assert QtOpenGL.QGLFramebufferObjectFormat is not None assert QtOpenGL.QGLPixelBuffer is not None assert QtOpenGL.QGLShader is not None assert QtOpenGL.QGLShaderProgram is not None