Skip to content

Commit 6e9475e

Browse files
Fix test
1 parent c7cd50a commit 6e9475e

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public void testJoinTwiceOnTheSameField_TwoLookups() {
158158

159159
public void testInvalidLimit() {
160160
assertEquals("1:13: Invalid value for LIMIT [foo: String], expecting a non negative integer", error("row a = 1 | limit \"foo\""));
161-
assertEquals("1:13: Invalid value for LIMIT [1.2: DOUBLE], expecting a non negative integer", error("row a = 1 | limit 1.2"));
161+
assertEquals("1:13: Invalid value for LIMIT [1.2: Double], expecting a non negative integer", error("row a = 1 | limit 1.2"));
162162
assertEquals("1:13: Invalid value for LIMIT [-1], expecting a non negative integer", error("row a = 1 | limit -1"));
163163
}
164164

0 commit comments

Comments
 (0)