diff --git a/src/Magnum/GL/Test/CubeMapTextureArrayGLTest.cpp b/src/Magnum/GL/Test/CubeMapTextureArrayGLTest.cpp index f39e46e07..8d4d0d1a1 100644 --- a/src/Magnum/GL/Test/CubeMapTextureArrayGLTest.cpp +++ b/src/Magnum/GL/Test/CubeMapTextureArrayGLTest.cpp @@ -1211,15 +1211,9 @@ void CubeMapTextureArrayGLTest::compressedSubImage() { MAGNUM_VERIFY_NO_GL_ERROR(); CORRADE_COMPARE(image.size(), (Vector3i{12, 12, 6})); - - { - CORRADE_EXPECT_FAIL_IF(data.storage != CompressedPixelStorage{} && (Context::current().detectedDriver() & Context::DetectedDriver::NVidia), - "Non-default compressed pixel storage for cube map textures behaves weirdly on NVidia for client-memory images"); - - CORRADE_COMPARE_AS(Containers::arrayCast(image.data()), - Containers::arrayView(CompressedSubDataComplete), - TestSuite::Compare::Container); - } + CORRADE_COMPARE_AS(Containers::arrayCast(image.data()), + Containers::arrayView(CompressedSubDataComplete), + TestSuite::Compare::Container); #endif } diff --git a/src/Magnum/GL/Test/TextureArrayGLTest.cpp b/src/Magnum/GL/Test/TextureArrayGLTest.cpp index de0db9748..26f1a34e3 100644 --- a/src/Magnum/GL/Test/TextureArrayGLTest.cpp +++ b/src/Magnum/GL/Test/TextureArrayGLTest.cpp @@ -1837,15 +1837,9 @@ void TextureArrayGLTest::compressedSubImage2D() { MAGNUM_VERIFY_NO_GL_ERROR(); CORRADE_COMPARE(image.size(), (Vector3i{12, 4, 4})); - - { - CORRADE_EXPECT_FAIL_IF(data.storage != CompressedPixelStorage{} && (Context::current().detectedDriver() & Context::DetectedDriver::NVidia), - "Non-default compressed pixel storage for array textures behaves weirdly on NVidia"); - - CORRADE_COMPARE_AS(Containers::arrayCast(image.data()), - Containers::arrayView(CompressedSubData2DComplete), - TestSuite::Compare::Container); - } + CORRADE_COMPARE_AS(Containers::arrayCast(image.data()), + Containers::arrayView(CompressedSubData2DComplete), + TestSuite::Compare::Container); #endif }