You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2018/06/09 23:38:54 UTC

[2/3] commons-collections git commit: COLLECTIONS-681: expand imports

COLLECTIONS-681: expand imports


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/e63c5361
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/e63c5361
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/e63c5361

Branch: refs/heads/master
Commit: e63c5361937cc2598a3cd030f79733cc8c22b6fd
Parents: 13467cb
Author: Bruno P. Kinoshita <ki...@apache.org>
Authored: Sun Jun 10 11:35:20 2018 +1200
Committer: Bruno P. Kinoshita <ki...@apache.org>
Committed: Sun Jun 10 11:35:20 2018 +1200

----------------------------------------------------------------------
 .../java/org/apache/commons/collections4/MultiSetUtilsTest.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/e63c5361/src/test/java/org/apache/commons/collections4/MultiSetUtilsTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/collections4/MultiSetUtilsTest.java b/src/test/java/org/apache/commons/collections4/MultiSetUtilsTest.java
index b695c6c..7877538 100644
--- a/src/test/java/org/apache/commons/collections4/MultiSetUtilsTest.java
+++ b/src/test/java/org/apache/commons/collections4/MultiSetUtilsTest.java
@@ -16,9 +16,11 @@
  */
 package org.apache.commons.collections4;
 
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.fail;
 
 import java.util.Arrays;
+
 import org.apache.commons.collections4.multiset.HashMultiSet;
 import org.junit.Before;
 import org.junit.Test;