mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 03:55:28 -04:00
Removed a deprecated method.
This commit is contained in:
parent
96901e020f
commit
c74630656f
@ -1122,7 +1122,7 @@ public abstract class CollectionAbstractTest extends ObjectAbstractTest {
|
|||||||
resetEmpty();
|
resetEmpty();
|
||||||
Object[] a = new Object[] { new Object(), null, null };
|
Object[] a = new Object[] { new Object(), null, null };
|
||||||
Object[] array = collection.toArray(a);
|
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);
|
assertEquals("Last element should be set to null", a[0], null);
|
||||||
verifyAll();
|
verifyAll();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user