LUCENE-2136: This can be reverted.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@888437 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2009-12-08 15:19:21 +00:00
parent 9565d7d071
commit 6702e09b98
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ public class TestRegexQuery extends TestCase {
public void testMatchAll() throws Exception {
TermEnum terms = new RegexQuery(new Term(FN, "jum.")).getEnum(searcher.getIndexReader());
// no term should match
assertNull(terms.term());
assertFalse(terms.next());
}