File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -386,12 +386,10 @@ public static LogicalOptimizerContext unboundLogicalOptimizerContext() {
386386 @ SuppressWarnings ("unchecked" )
387387 private static InferenceService mockInferenceService () {
388388 InferenceService inferenceService = mock (InferenceService .class );
389- doAnswer (
390- i -> {
391- i .getArgument (1 , ActionListener .class ).onResponse (emptyInferenceResolution ());
392- return null ;
393- }
394- ).when (inferenceService ).resolveInferences (any (), any ());
389+ doAnswer (i -> {
390+ i .getArgument (1 , ActionListener .class ).onResponse (emptyInferenceResolution ());
391+ return null ;
392+ }).when (inferenceService ).resolveInferences (any (), any ());
395393
396394 return inferenceService ;
397395 }
You can’t perform that action at this time.
0 commit comments