Fix test after #12549.

This commit is contained in:
Adrien Grand 2023-10-31 09:47:19 +01:00
parent 4576ae09e8
commit 85f5d3bb0b
1 changed files with 6 additions and 5 deletions

View File

@ -2404,11 +2404,12 @@ public class TestIndexWriter extends LuceneTestCase {
writer.deleteDocuments(new Term("id", "xyz"));
assertTrue(writer.hasUncommittedChanges());
// Must commit, waitForMerges, commit again, to be
// certain that hasUncommittedChanges returns false:
writer.commit();
writer.waitForMerges();
writer.commit();
// Must commit and wait for merges as long as the commit triggers merges to be certain that
// hasUncommittedChanges returns false
do {
writer.waitForMerges();
writer.commit();
} while (writer.hasPendingMerges());
assertFalse(writer.hasUncommittedChanges());
writer.close();