diff --git a/spring-expression/src/test/java/org/springframework/expression/spel/SpelCompilationCoverageTests.java b/spring-expression/src/test/java/org/springframework/expression/spel/SpelCompilationCoverageTests.java index f8e8096b721..7fa06b1ae77 100644 --- a/spring-expression/src/test/java/org/springframework/expression/spel/SpelCompilationCoverageTests.java +++ b/spring-expression/src/test/java/org/springframework/expression/spel/SpelCompilationCoverageTests.java @@ -720,7 +720,7 @@ public class SpelCompilationCoverageTests extends AbstractExpressionTests { assertThat(getAst().getExitDescriptor()).isEqualTo("Ljava/lang/String"); } - @Test // gh-32694 + @Test // gh-32694, gh-32908 void indexIntoArrayUsingIntegerWrapper() { context.setVariable("array", new int[] {1, 2, 3, 4}); context.setVariable("index", 2); @@ -733,7 +733,7 @@ public class SpelCompilationCoverageTests extends AbstractExpressionTests { assertThat(getAst().getExitDescriptor()).isEqualTo("I"); } - @Test // gh-32694 + @Test // gh-32694, gh-32908 void indexIntoListUsingIntegerWrapper() { context.setVariable("list", List.of(1, 2, 3, 4)); context.setVariable("index", 2);