From 40ac75ff3da2ddca7563aedb9e8fe5f47189adbc Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Fri, 13 Sep 2024 10:39:49 -0700 Subject: [PATCH] Always run integration test for #1161 The intent was to only run the test on JDK 23+ and to disable it until the linked issue was fixed, but it actually resulted in the test being discovered and run on all JDK versions. That's fine, because the test is backwards compatible (`///` comments are valid in all versions, they just aren't markdown comments until 23). The test is being fixed in https://github.com/google/google-java-format/pull/1161 PiperOrigin-RevId: 674352956 --- .../google/googlejavaformat/java/FormatterIntegrationTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/test/java/com/google/googlejavaformat/java/FormatterIntegrationTest.java b/core/src/test/java/com/google/googlejavaformat/java/FormatterIntegrationTest.java index d0817a2cf..3e4e175e6 100644 --- a/core/src/test/java/com/google/googlejavaformat/java/FormatterIntegrationTest.java +++ b/core/src/test/java/com/google/googlejavaformat/java/FormatterIntegrationTest.java @@ -72,8 +72,6 @@ public class FormatterIntegrationTest { "I981", "I1020", "I1037") - // TODO: https://github.com/google/google-java-format/issues/1153 - // .putAll(23, "I1153") .build(); @Parameters(name = "{index}: {0}")