From d60a89151c1a917334601ee0e6fcdf5ba5ca0620 Mon Sep 17 00:00:00 2001 From: Luigi Dell'Aquila Date: Tue, 17 Jun 2025 16:58:08 +0200 Subject: [PATCH] ES|QL: fix an unmute generative tests --- muted-tests.yml | 3 --- .../xpack/esql/qa/rest/generative/GenerativeRestTest.java | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/muted-tests.yml b/muted-tests.yml index 3b818453158f2..14a01f75a4129 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -520,9 +520,6 @@ tests: - class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT method: test {knn-function.KnnSearchWithKOption ASYNC} issue: https://github.com/elastic/elasticsearch/issues/129447 -- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT - method: test - issue: https://github.com/elastic/elasticsearch/issues/129453 - class: org.elasticsearch.xpack.ml.integration.ClassificationIT method: testWithDatastreams issue: https://github.com/elastic/elasticsearch/issues/129457 diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeRestTest.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeRestTest.java index 88df38cc347cf..21d0bf2ba49f8 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeRestTest.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeRestTest.java @@ -55,7 +55,8 @@ public abstract class GenerativeRestTest extends ESRestTestCase { "The incoming YAML document exceeds the limit:", // still to investigate, but it seems to be specific to the test framework // Awaiting fixes for correctness - "Expecting the following columns \\[.*\\], got" // https://github.com/elastic/elasticsearch/issues/129000 + "Expecting the following columns \\[.*\\], got", // https://github.com/elastic/elasticsearch/issues/129000 + "Expecting at most \\[.*\\] columns, got \\[.*\\]" // https://github.com/elastic/elasticsearch/issues/129561 ); public static final Set ALLOWED_ERROR_PATTERNS = ALLOWED_ERRORS.stream()