Skip to content

Commit c7945a9

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 965069f commit c7945a9

File tree

1 file changed

+2
-6
lines changed
  • x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action

1 file changed

+2
-6
lines changed

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,7 @@ public void testWithStatsAfterFork() {
599599
try (var resp = run(query)) {
600600
assertColumnNames(resp.columns(), List.of("c"));
601601
assertColumnTypes(resp.columns(), List.of("long"));
602-
Iterable<Iterable<Object>> expectedValues = List.of(
603-
List.of(7L)
604-
);
602+
Iterable<Iterable<Object>> expectedValues = List.of(List.of(7L));
605603
assertValues(resp.values(), expectedValues);
606604
}
607605
}
@@ -618,9 +616,7 @@ public void testWithStatsWithWhereAfterFork() {
618616
assertColumnNames(resp.columns(), List.of("c"));
619617
assertColumnTypes(resp.columns(), List.of("long"));
620618

621-
Iterable<Iterable<Object>> expectedValues = List.of(
622-
List.of(2L)
623-
);
619+
Iterable<Iterable<Object>> expectedValues = List.of(List.of(2L));
624620
assertValues(resp.values(), expectedValues);
625621
}
626622
}

0 commit comments

Comments
 (0)