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 a6668768bf420d2aecfa73b10b44d324c1e0f127 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Mar 31 11:07:55 2024 -0400 Rework test fixtures Make sure we don't depend on map iteration order --- .../commons/collections4/multimap/AbstractMultiValuedMapTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 15f490d70..94fac2ee8 100644 --- a/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java +++ b/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java @@ -532,7 +532,7 @@ public abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTes } public int getSampleCountPerKey() { - return 2; + return 8; } /**