mirror of https://github.com/apache/lucene.git
Fix TestRangeOnRaneFacetCounts dimention overflow error (#12049)
This commit is contained in:
parent
21107d811b
commit
4eab1d74e8
|
@ -1001,7 +1001,7 @@ public class TestRangeOnRangeFacetCounts extends FacetTestCase {
|
|||
RandomIndexWriter w = new RandomIndexWriter(random(), dir);
|
||||
|
||||
int numDocs = atLeast(1000);
|
||||
int dims = atLeast(2);
|
||||
int dims = random().nextInt(2, 5);
|
||||
if (VERBOSE) {
|
||||
System.out.println("TEST: numDocs=" + numDocs);
|
||||
}
|
||||
|
@ -1318,7 +1318,7 @@ public class TestRangeOnRangeFacetCounts extends FacetTestCase {
|
|||
RandomIndexWriter w = new RandomIndexWriter(random(), dir);
|
||||
|
||||
int numDocs = atLeast(1000);
|
||||
int dims = atLeast(2);
|
||||
int dims = random().nextInt(2, 5);
|
||||
if (VERBOSE) {
|
||||
System.out.println("TEST: numDocs=" + numDocs);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue