mirror of https://github.com/apache/lucene.git
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:
parent
ef17416494
commit
d9dba8d517
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue