fix test bug: increase max determinized states during complement op

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1688602 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2015-07-01 09:09:11 +00:00
parent ef17416494
commit d9dba8d517
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ public class TestAutomaton extends LuceneTestCase {
assertTrue(removed);
}
Automaton a2 = unionTerms(toRemove);
a = Operations.minus(a, a2, DEFAULT_MAX_DETERMINIZED_STATES);
a = Operations.minus(a, a2, Integer.MAX_VALUE);
}
}
break;