Skip to content

Commit 94ed47d

Browse files
Fix one test
1 parent 1e54c34 commit 94ed47d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2478,7 +2478,7 @@ public void testMultiMatchInsideEval() throws Exception {
24782478
assumeTrue("Match operator is available just for snapshots", Build.current().isSnapshot());
24792479
assertEquals(
24802480
"1:36: [Match] function is only supported in WHERE and STATS commands\n"
2481-
+ "line 1:48: [Match] function cannot operate on [title], which is not a field from an index mapping",
2481+
+ "line 1:42: [Match] function cannot operate on [title], which is not a field from an index mapping",
24822482
error("row title = \"brown fox\" | eval x = match(title, \"fox\")")
24832483
);
24842484
}

0 commit comments

Comments
 (0)