Skip to content

Commit 9e40bb3

Browse files
ES|QL: fix an unmute generative tests (#129562)
1 parent 5e475f2 commit 9e40bb3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -520,9 +520,6 @@ tests:
520520
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
521521
method: test {knn-function.KnnSearchWithKOption ASYNC}
522522
issue: https://github.com/elastic/elasticsearch/issues/129447
523-
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
524-
method: test
525-
issue: https://github.com/elastic/elasticsearch/issues/129453
526523
- class: org.elasticsearch.xpack.ml.integration.ClassificationIT
527524
method: testWithDatastreams
528525
issue: https://github.com/elastic/elasticsearch/issues/129457

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ public abstract class GenerativeRestTest extends ESRestTestCase {
5555
"The incoming YAML document exceeds the limit:", // still to investigate, but it seems to be specific to the test framework
5656

5757
// Awaiting fixes for correctness
58-
"Expecting the following columns \\[.*\\], got" // https://github.com/elastic/elasticsearch/issues/129000
58+
"Expecting the following columns \\[.*\\], got", // https://github.com/elastic/elasticsearch/issues/129000
59+
"Expecting at most \\[.*\\] columns, got \\[.*\\]" // https://github.com/elastic/elasticsearch/issues/129561
5960
);
6061

6162
public static final Set<Pattern> ALLOWED_ERROR_PATTERNS = ALLOWED_ERRORS.stream()

0 commit comments

Comments
 (0)