From d4789dda740301838f796cff5e43d564f3d2791a Mon Sep 17 00:00:00 2001 From: carlosdelest Date: Tue, 17 Dec 2024 17:14:44 +0100 Subject: [PATCH] Fix test --- .../org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java index 6ae2ae96842b0..d1d36d43dcbd1 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/MatchOperatorIT.java @@ -216,7 +216,7 @@ public void testWhereMatchWithFunctions() { error.getMessage(), containsString( "Invalid condition [content:\"fox\" OR to_upper(content) == \"FOX\"]. " - + "[:] operator can be used in an OR condition, but only if just full text functions are used in the OR condition" + + "Full text functions can be used in an OR condition, but only if just full text functions are used in the OR condition" ) ); }