File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments