diff --git a/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java b/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java index bc96e5697c..6c89d02a41 100644 --- a/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java +++ b/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java @@ -801,8 +801,8 @@ public void testFullMapCompatibility() throws Exception { // } // assertTrue( values.contains("un")); // assertTrue( values.contains("uno")); -// assertEquals(false, map.iterator("A").hasNext()); -// assertEquals(false, map.iterator("A").hasNext()); +// assertFalse(map.iterator("A").hasNext()); +// assertFalse(map.iterator("A").hasNext()); // if (!isAddSupported()) { // return; // } @@ -810,7 +810,7 @@ public void testFullMapCompatibility() throws Exception { // it = map.iterator("A"); // assertTrue( it.hasNext()); // it.next(); -// assertEquals(false, it.hasNext()); +// assertFalse(it.hasNext()); // } @Test