This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push: new 38359a00a Use better JUnit API 38359a00a is described below commit 38359a00ad66ef3bfcb83356d096a51c22bbbfdb Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 22 16:11:54 2024 -0400 Use better JUnit API --- .../commons/collections4/multimap/AbstractMultiValuedMapTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 bc96e5697..6c89d02a4 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 abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTes // } // 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 abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTes // it = map.iterator("A"); // assertTrue( it.hasNext()); // it.next(); -// assertEquals(false, it.hasNext()); +// assertFalse(it.hasNext()); // } @Test