Skip to content

Commit 8871d67

Browse files
committed
Merge branch '6.1.x'
2 parents 57fae7a + cda577d commit 8871d67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-expression/src/test/java/org/springframework/expression/spel/SpelCompilationCoverageTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ void indexIntoObject() {
720720
assertThat(getAst().getExitDescriptor()).isEqualTo("Ljava/lang/String");
721721
}
722722

723-
@Test // gh-32694
723+
@Test // gh-32694, gh-32908
724724
void indexIntoArrayUsingIntegerWrapper() {
725725
context.setVariable("array", new int[] {1, 2, 3, 4});
726726
context.setVariable("index", 2);
@@ -733,7 +733,7 @@ void indexIntoArrayUsingIntegerWrapper() {
733733
assertThat(getAst().getExitDescriptor()).isEqualTo("I");
734734
}
735735

736-
@Test // gh-32694
736+
@Test // gh-32694, gh-32908
737737
void indexIntoListUsingIntegerWrapper() {
738738
context.setVariable("list", List.of(1, 2, 3, 4));
739739
context.setVariable("index", 2);

0 commit comments

Comments
 (0)