Claudenw commented on code in PR #402:
URL:
https://github.com/apache/commons-collections/pull/402#discussion_r1406448257
##########
src/test/java/org/apache/commons/collections4/bloomfilter/CountingPredicateTest.java:
##########
@@ -16,31 +16,103 @@
*/
package org.apache.commons.collections4.bloomfilter;
+import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.function.BiPredicate;
+
+import org.apache.commons.lang3.tuple.Pair;
import org.junit.jupiter.api.Test;
public class CountingPredicateTest {
+ private List<Pair<Integer, Integer>> expected = new ArrayList<>();
+ private List<Pair<Integer, Integer>> result = new ArrayList<>();
Review Comment:
@aherbert, thanks for the suggestion. I made the changes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]