Skip to content

Commit ff26321

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent fa42e76 commit ff26321

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,10 @@ protected boolean supportsTook() throws IOException {
428428
@Override
429429
protected boolean supportsExponentialHistograms() {
430430
try {
431-
return RestEsqlTestCase.hasCapabilities(client(), List.of(EsqlCapabilities.Cap.EXPONENTIAL_HISTOGRAM_PRE_TECH_PREVIEW_V1.capabilityName()))
431+
return RestEsqlTestCase.hasCapabilities(
432+
client(),
433+
List.of(EsqlCapabilities.Cap.EXPONENTIAL_HISTOGRAM_PRE_TECH_PREVIEW_V1.capabilityName())
434+
)
432435
&& RestEsqlTestCase.hasCapabilities(
433436
remoteClusterClient(),
434437
List.of(EsqlCapabilities.Cap.EXPONENTIAL_HISTOGRAM_PRE_TECH_PREVIEW_V1.capabilityName())

x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/EsqlSpecIT.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ protected boolean supportsSourceFieldMapping() {
5656

5757
@Override
5858
protected boolean supportsExponentialHistograms() {
59-
return RestEsqlTestCase.hasCapabilities(client(), List.of(EsqlCapabilities.Cap.EXPONENTIAL_HISTOGRAM_PRE_TECH_PREVIEW_V1.capabilityName()));
59+
return RestEsqlTestCase.hasCapabilities(
60+
client(),
61+
List.of(EsqlCapabilities.Cap.EXPONENTIAL_HISTOGRAM_PRE_TECH_PREVIEW_V1.capabilityName())
62+
);
6063
}
6164

6265
@Before

x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,10 @@ protected boolean supportsSourceFieldMapping() throws IOException {
287287
}
288288

289289
protected boolean supportsExponentialHistograms() {
290-
return RestEsqlTestCase.hasCapabilities(client(), List.of(EsqlCapabilities.Cap.EXPONENTIAL_HISTOGRAM_PRE_TECH_PREVIEW_V1.capabilityName()));
290+
return RestEsqlTestCase.hasCapabilities(
291+
client(),
292+
List.of(EsqlCapabilities.Cap.EXPONENTIAL_HISTOGRAM_PRE_TECH_PREVIEW_V1.capabilityName())
293+
);
291294
}
292295

293296
protected void doTest() throws Throwable {

0 commit comments

Comments
 (0)