Skip to content

Commit

Permalink
[opengl] fix QGLFrameBufferObject spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
renefritze committed Dec 27, 2021
1 parent 3029bb2 commit 500de5d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qtpy/tests/test_qtopengl.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit 500de5d

Please sign in to comment.