Skip to content

Commit e92c92b

Browse files
committed
Format changes
1 parent 0f58f24 commit e92c92b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/VerifierTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,6 +1081,7 @@ public void testAggregateOnCounter() {
10811081
+ " found value [network.bytes_in] type [counter_long]"
10821082
)
10831083
);
1084+
}
10841085

10851086
assertThat(
10861087
error("FROM tests | STATS max(network.bytes_in)", tsdb),

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,14 @@ public void testRowCommandWithEscapedFieldName() {
230230

231231
public void testCompositeCommand() {
232232
assertEquals(
233-
new Filter(EMPTY, new Row(EMPTY, List.of(new Alias(EMPTY, "a", integer(1)))), TRUE),
233+
new Filter(EMPTY,
234+
new Row(EMPTY,
235+
List.of(
236+
new Alias(EMPTY, "a", integer(1))
237+
)
238+
),
239+
TRUE),
240+
234241
statement("row a = 1 | where true")
235242
);
236243
}

0 commit comments

Comments
 (0)