Skip to content

Commit 5df0ba5

Browse files
dnhatnjasontedor
authored andcommitted
Fix compilation after merge from master
1 parent d894679 commit 5df0ba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/test/java/org/elasticsearch/index/engine/InternalEngineTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4490,7 +4490,7 @@ public void testCleanUpCommitsWhenGlobalCheckpointAdvanced() throws Exception {
44904490
globalCheckpoint.set(randomLongBetween(engine.getLocalCheckpoint(), Long.MAX_VALUE));
44914491
engine.syncTranslog();
44924492
assertThat(DirectoryReader.listCommits(store.directory()), contains(commits.get(commits.size() - 1)));
4493-
assertThat(engine.estimateTranslogOperationsFromMinSeq(0L), equalTo(0));
4493+
assertThat(engine.getTranslog().totalOperations(), equalTo(0));
44944494
}
44954495
}
44964496

0 commit comments

Comments
 (0)