Rework test fixtures

Next, grow the amount of data tested to find bugs in the tests with
non-repeatable map ordering
This commit is contained in:
Gary Gregory 2024-03-31 10:56:06 -04:00
parent eab18e9851
commit 6d3740fb48
1 changed files with 1 additions and 1 deletions

View File

@ -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