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
commit 450ed7118e2bc0deb73f73b220d0920fab7916bb Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Mar 31 09:55:00 2024 -0400 Format tweak --- .../commons/collections4/multimap/AbstractMultiValuedMapTest.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 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 b4b224da1..dddc00cd9 100644 --- a/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java +++ b/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java @@ -22,6 +22,8 @@ import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assumptions.assumeTrue; +import static org.junit.jupiter.api.Assumptions.assumeFalse; import java.util.ArrayList; import java.util.Arrays; @@ -698,12 +700,12 @@ public abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTes @Test @SuppressWarnings("unchecked") - public void testAddMappingThroughGet(){ + public void testAddMappingThroughGet() { if (!isAddSupported()) { return; } resetEmpty(); - final MultiValuedMap<K, V> map = getMap(); + final MultiValuedMap<K, V> map = getMap(); final Collection<V> col1 = map.get((K) "k0"); final Collection<V> col2 = map.get((K) "k0"); assertTrue(col1.isEmpty());