LUCENE-1187: Fix ChainedFilterTest.java and BooleanFilterTest.java to not reference class from test/org/apache/lucene/search/, which is not in the contrib classpath.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@659742 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Busch 2008-05-24 01:45:12 +00:00
parent 1d6d186888
commit 3e7a15e317
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,5 @@
package org.apache.lucene.search;
import java.util.BitSet;
import java.util.HashSet;
import junit.framework.TestCase;
@ -13,6 +12,7 @@ import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.Term;
import org.apache.lucene.index.IndexWriter.MaxFieldLength;
import org.apache.lucene.store.RAMDirectory;
import org.apache.lucene.util.OpenBitSet;
public class TermsFilterTest extends TestCase
{