File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -245,8 +245,6 @@ tests:
245245- class : org.elasticsearch.xpack.security.authz.IndicesAndAliasesResolverTests
246246 method : testBackingIndicesAreNotVisibleWhenNotIncludedByRequestWithoutWildcard
247247 issue : https://github.com/elastic/elasticsearch/issues/119909
248- - class : org.elasticsearch.xpack.esql.CsvTests
249- issue : https://github.com/elastic/elasticsearch/issues/119918
250248
251249# Examples:
252250#
Original file line number Diff line number Diff line change @@ -270,6 +270,10 @@ public final void test() throws Throwable {
270270 "can't use TERM function in csv tests" ,
271271 testCase .requiredCapabilities .contains (EsqlCapabilities .Cap .TERM_FUNCTION .capabilityName ())
272272 );
273+ assumeFalse (
274+ "CSV tests cannot correctly handle the field caps change" ,
275+ testCase .requiredCapabilities .contains (EsqlCapabilities .Cap .SEMANTIC_TEXT_FIELD_CAPS .capabilityName ())
276+ );
273277 if (Build .current ().isSnapshot ()) {
274278 assertThat (
275279 "Capability is not included in the enabled list capabilities on a snapshot build. Spelling mistake?" ,
You can’t perform that action at this time.
0 commit comments