Skip to content

Commit 4f5ad9d

Browse files
authored
Unmute CSV tests (#119940)
1 parent 25a0448 commit 4f5ad9d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

muted-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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
#

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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?",

0 commit comments

Comments
 (0)