Skip to content

Commit 2939d24

Browse files
committed
spotless
1 parent 7e7b33b commit 2939d24

File tree

1 file changed

+2
-3
lines changed
  • server/src/internalClusterTest/java/org/elasticsearch/action/admin/indices/rollover

1 file changed

+2
-3
lines changed

server/src/internalClusterTest/java/org/elasticsearch/action/admin/indices/rollover/RolloverIT.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ public void testRolloverMaxShardDocs() throws Exception {
558558
final RolloverResponse response = client().admin()
559559
.indices()
560560
.prepareRolloverIndex("test_alias")
561-
.addMaxShardDocsCondition(randomIntBetween(21,30))
561+
.addMaxShardDocsCondition(randomIntBetween(21, 30))
562562
.get();
563563
assertThat(response.getOldIndex(), equalTo("test-1"));
564564
assertThat(response.getNewIndex(), equalTo("test-000002"));
@@ -569,7 +569,7 @@ public void testRolloverMaxShardDocs() throws Exception {
569569

570570
// A small max_shard_docs
571571
{
572-
MaxShardDocsCondition maxShardDocsCondition = new MaxShardDocsCondition(randomLongBetween(1,9));
572+
MaxShardDocsCondition maxShardDocsCondition = new MaxShardDocsCondition(randomLongBetween(1, 9));
573573
long beforeTime = client().threadPool().absoluteTimeInMillis() - 1000L;
574574
final RolloverResponse response = client().admin()
575575
.indices()
@@ -604,7 +604,6 @@ public void testRolloverMaxShardDocs() throws Exception {
604604
}
605605
}
606606

607-
608607
public void testRejectIfAliasFoundInTemplate() throws Exception {
609608
client().admin()
610609
.indices()

0 commit comments

Comments
 (0)