Skip to content

Commit b1d9f4a

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 1fd0b14 commit b1d9f4a

File tree

1 file changed

+4
-6
lines changed
  • x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql

1 file changed

+4
-6
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)