diff --git a/common/common-lang/src/test/java/com/twelvemonkeys/util/CollectionAbstractTest.java b/common/common-lang/src/test/java/com/twelvemonkeys/util/CollectionAbstractTest.java index e2f08d86..85ee6b8a 100755 --- a/common/common-lang/src/test/java/com/twelvemonkeys/util/CollectionAbstractTest.java +++ b/common/common-lang/src/test/java/com/twelvemonkeys/util/CollectionAbstractTest.java @@ -1122,7 +1122,7 @@ public abstract class CollectionAbstractTest extends ObjectAbstractTest { resetEmpty(); Object[] a = new Object[] { new Object(), null, null }; Object[] array = collection.toArray(a); - assertEquals("Given array shouldn't shrink", array, a); + assertArrayEquals("Given array shouldn't shrink", array, a); assertEquals("Last element should be set to null", a[0], null); verifyAll();