Skip to content

Commit 423f221

Browse files
committedApr 10, 2023
Remove flaky assertion to fix build on JDK 17
Sometime between JDK 8 and JDK 17, the behavior for List::toArray() changed. Specifically, the type returned for List<String> changed from String[] to Object[]. This commit therefore removes an assertion against this particular JDK-specific behavior. The affected test method retains additional assertions along the same lines but which are not flaky.
1 parent 0bad69d commit 423f221

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎spring-core/src/test/java/org/springframework/util/ObjectUtilsTests.java

-1
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,6 @@ void nullSafeConciseToStringForLocale() {
919919
void nullSafeConciseToStringForArraysAndCollections() {
920920
List<String> list = Arrays.asList("a", "b", "c");
921921
assertThat(ObjectUtils.nullSafeConciseToString(new int[][] {{1, 2}, {3, 4}})).startsWith(prefix(int[][].class));
922-
assertThat(ObjectUtils.nullSafeConciseToString(list.toArray())).startsWith(prefix(String[].class));
923922
assertThat(ObjectUtils.nullSafeConciseToString(list.toArray(new Object[0]))).startsWith(prefix(Object[].class));
924923
assertThat(ObjectUtils.nullSafeConciseToString(list.toArray(new String[0]))).startsWith(prefix(String[].class));
925924
assertThat(ObjectUtils.nullSafeConciseToString(new ArrayList<>(list))).startsWith(prefix(ArrayList.class));

0 commit comments

Comments
 (0)