Fix over-suppression of ETC2 tests

This was supposed to be only suppressed for OpenGLES + ETC2 as part of
https://dawn-review.googlesource.com/c/dawn/+/207554

Bug: 362762192
Change-Id: Ibb17043ac8b8cbb65e55ec18e53abc5baf9f1c98
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/245635
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Auto-Submit: Antonio Maiorano <amaiorano@google.com>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
diff --git a/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp b/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp
index ad4b4c0..608869c 100644
--- a/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp
+++ b/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp
@@ -757,8 +757,8 @@
     const wgpu::TextureFormat format = GetParam().mTextureFormat;
 
     // TODO(crbug.com/362762192): diagnose this failure on GLES with ASTC and ETC2 texture formats
-    DAWN_SUPPRESS_TEST_IF(IsOpenGLES() && (utils::IsASTCTextureFormat(format)) ||
-                          utils::IsETC2TextureFormat(format));
+    DAWN_SUPPRESS_TEST_IF(
+        IsOpenGLES() && (utils::IsASTCTextureFormat(format) || utils::IsETC2TextureFormat(format)));
 
     constexpr uint32_t kLayers = 6;
     CopyConfig config = GetDefaultSmallConfig(kLayers);