Skip to content

Commit b586066

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent b989efc commit b586066

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/framework/src/main/java/org/elasticsearch/index/engine/EngineTestCase.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,11 @@ public static void assertConsistentHistoryBetweenTranslogAndLuceneIndex(Engine e
13971397
}
13981398
}
13991399
assertThat(luceneOp, notNullValue());
1400-
assertThat("primary term does not match, luceneOp=[" + luceneOp + "], translogOp=[" + translogOp + "]", luceneOp.primaryTerm(), equalTo(translogOp.primaryTerm()));
1400+
assertThat(
1401+
"primary term does not match, luceneOp=[" + luceneOp + "], translogOp=[" + translogOp + "]",
1402+
luceneOp.primaryTerm(),
1403+
equalTo(translogOp.primaryTerm())
1404+
);
14011405
assertThat(luceneOp.opType(), equalTo(translogOp.opType()));
14021406
if (luceneOp.opType() == Translog.Operation.Type.INDEX) {
14031407
if (engine.engineConfig.getIndexSettings().isRecoverySourceSyntheticEnabled()

0 commit comments

Comments
 (0)