Skip to content

Commit 656b605

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent f809ad0 commit 656b605

File tree

1 file changed

+3
-2
lines changed
  • x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node

1 file changed

+3
-2
lines changed

x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestEsqlIT.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ public void testProfile() throws IOException {
374374
assertThat(plan.get("plan"), notNullValue());
375375
String description = (String) plan.get("description");
376376
assertTrue("Unexpected plan description " + description, Set.of("final", "node_reduce", "data").contains(description));
377-
switch(description) {
377+
switch (description) {
378378
case "final", "data" -> {
379379
assertThat((int) plan.get("logical_optimization_nanos"), greaterThanOrEqualTo(0));
380380
assertThat((int) plan.get("physical_optimization_nanos"), greaterThanOrEqualTo(0));
@@ -385,7 +385,8 @@ public void testProfile() throws IOException {
385385
assertFalse(plan.containsKey("logical_optimization_nanos"));
386386
assertFalse(plan.containsKey("physical_optimization_nanos"));
387387
}
388-
default -> {}
388+
default -> {
389+
}
389390
}
390391
}
391392
}

0 commit comments

Comments
 (0)