LUCENE-6895: fix test bug

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1714021 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2015-11-12 11:39:51 +00:00
parent 456e17a8e4
commit 7307bb7eba
1 changed files with 1 additions and 1 deletions

View File

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