From a52215fc28df7e72afb63767204a8a6c36c4a22a Mon Sep 17 00:00:00 2001 From: "Mike C. Fletcher" Date: Thu, 2 Jan 2020 11:08:14 -0500 Subject: [PATCH] TESTS Fix usage of glCompressedTexImage2D in test_core If you run the core test suite on Windows where the extension is supported we see a failure because there is a missing argument. --- tests/test_core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_core.py b/tests/test_core.py index cf533030..5d9e94f9 100755 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -590,7 +590,8 @@ def test_compressed_data(self): GL_TEXTURE_2D, 0, s3tc.GL_COMPRESSED_RGBA_S3TC_DXT5_EXT, 256, 256, 0, - image + 256*256*1, + image, ) assert texture