fix test bug

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1722325 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2015-12-30 12:22:16 +00:00
parent ec64ba0029
commit 10cdcf6f9b
1 changed files with 1 additions and 1 deletions

View File

@ -1028,7 +1028,7 @@ public class TestDimensionalRangeQuery extends LuceneTestCase {
private static Codec getCodec() {
if (Codec.getDefault().getName().equals("Lucene60")) {
int maxPointsInLeafNode = TestUtil.nextInt(random(), 16, 2048);
double maxMBSortInHeap = 2.0 + (3*random().nextDouble());
double maxMBSortInHeap = 3.0 + (3*random().nextDouble());
if (VERBOSE) {
System.out.println("TEST: using Lucene60DimensionalFormat with maxPointsInLeafNode=" + maxPointsInLeafNode + " and maxMBSortInHeap=" + maxMBSortInHeap);
}