Skip to content

Commit 7b3c1cc

Browse files
committed
Add assertions to
org.apache.commons.lang3.ClassUtilsTest
1 parent 71f3b1d commit 7b3c1cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/commons/lang3/ClassUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ void test_getShortCanonicalName_String() {
569569
assertEquals("int[][]", ClassUtils.getShortCanonicalName("[[I"));
570570
assertEquals("int[]", ClassUtils.getShortCanonicalName("int[]"));
571571
assertEquals("int[][]", ClassUtils.getShortCanonicalName("int[][]"));
572-
assertEquals("int[][][][][][][][][][]", ClassUtils.getShortCanonicalName("int[][][][][][][][][][][][]"));
572+
assertEquals("int[][][][][][][][][][][][]", ClassUtils.getShortCanonicalName("int[][][][][][][][][][][][]"));
573573
// this is to demonstrate that the documentation and the naming of the methods
574574
// uses the class name and canonical name totally mixed up, which cannot be
575575
// fixed without backward compatibility break

0 commit comments

Comments
 (0)