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 6d3740fb48cf043d307f44d046ec87e3f3b0c785 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Mar 31 10:56:06 2024 -0400 Rework test fixtures Next, grow the amount of data tested to find bugs in the tests with non-repeatable map ordering --- .../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 1c931e10c..4a24146a5 100644 --- a/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java +++ b/src/test/java/org/apache/commons/collections4/multimap/AbstractMultiValuedMapTest.java @@ -948,7 +948,7 @@ public abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTes @Test public void testKeySetSize() { final MultiValuedMap<K, V> map = makeFullMap(); - assertEquals(3, map.keySet().size()); + assertEquals(getSampleKeySize(), map.keySet().size()); } @Test