This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch TINKERPOP-2235 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 46a4cefaaf7802e1dcea42db31fadd9d49f754b7 Author: stephen <[email protected]> AuthorDate: Wed Nov 6 11:49:01 2019 -0500 TINKERPOP-2235 Expand imports to match code style --- .../org/apache/tinkerpop/gremlin/util/iterator/ArrayIteratorTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/util/iterator/ArrayIteratorTest.java b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/util/iterator/ArrayIteratorTest.java index 32f7401..2293277 100644 --- a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/util/iterator/ArrayIteratorTest.java +++ b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/util/iterator/ArrayIteratorTest.java @@ -23,7 +23,9 @@ import org.junit.Test; import java.util.Iterator; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNull; /** * @author Stephen Mallette (http://stephen.genoprime.com)
