LUCENE-9216: Make sure we index LEAST_DOUBLE_VALUE (#1246)

This commit is contained in:
Ignacio Vera 2020-02-10 11:50:08 +01:00 committed by iverase
parent 07de70ba62
commit 49a37708a0
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public class TestDoubleValuesSource extends LuceneTestCase {
if (TEST_NIGHTLY) { if (TEST_NIGHTLY) {
numDocs = TestUtil.nextInt(random(), 2049, 4000); numDocs = TestUtil.nextInt(random(), 2049, 4000);
} else { } else {
numDocs = atLeast(545); numDocs = atLeast(546);
} }
for (int i = 0; i < numDocs; i++) { for (int i = 0; i < numDocs; i++) {
Document document = new Document(); Document document = new Document();