Github user joshelser commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/46#discussion_r39470110
--- Diff:
core/src/test/java/org/apache/accumulo/core/iterators/user/RowDeletingIteratorTest.java
---
@@ -16,30 +16,26 @@
*/
package org.apache.accumulo.core.iterators.user;
-import java.io.IOException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.TreeMap;
-import junit.framework.TestCase;
-
-import org.apache.accumulo.core.conf.AccumuloConfiguration;
+import org.apache.accumulo.core.client.impl.TestIteratorEnvironment;
import org.apache.accumulo.core.data.ArrayByteSequence;
import org.apache.accumulo.core.data.ByteSequence;
import org.apache.accumulo.core.data.Key;
import org.apache.accumulo.core.data.Range;
import org.apache.accumulo.core.data.Value;
-import org.apache.accumulo.core.iterators.IteratorEnvironment;
import org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope;
-import org.apache.accumulo.core.iterators.SortedKeyValueIterator;
import org.apache.accumulo.core.iterators.SortedMapIterator;
import
org.apache.accumulo.core.iterators.system.ColumnFamilySkippingIterator;
-import org.apache.accumulo.core.security.Authorizations;
import org.apache.hadoop.io.Text;
+import junit.framework.TestCase;
+
public class RowDeletingIteratorTest extends TestCase {
- public static class TestIE implements IteratorEnvironment {
+ public static class TestIE extends TestIteratorEnvironment {
--- End diff --
Two TestIE classes? (essentially)
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---