LUCENE-8920: Fix flapping TestFstDirectAddressing.testDeDupTails (#1012)

This commit is contained in:
Bruno Roustant 2019-11-15 12:15:24 +01:00 committed by Michael Sokolov
parent 4931c0989d
commit 359864c65b
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ public class TestFstDirectAddressing extends LuceneTestCase {
long size = buildFST(entries).ramBytesUsed();
// Size is 1648 when we use only list-encoding. We were previously failing to ever de-dup
// direct addressing, which led this case to blow up.
assertTrue(size <= 1080);
//printf("fst size = %d bytes", size);
// This test will fail if there is more than 1% size increase with direct addressing.
assertTrue("FST size = " + size + " B", size <= 1648 * 1.01d);
}
public void testWorstCaseForDirectAddressing() throws Exception {