Skip to content

Commit 2f48a59

Browse files
committed
Fixed RepeatStaticTests
1 parent 0419e9d commit 2f48a59

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string

1 file changed

+2
-2
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RepeatStaticTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ public void testTooBig() {
5656
String repeated = process(str, number);
5757
assertNull(repeated);
5858
assertWarnings(
59-
"Line 1:1: java.lang.IllegalArgumentException: Creating repeated strings with more than [1048576] bytes is not supported",
60-
"Line 1:1: evaluation of [source] failed, treating result as null. Only first 20 failures recorded."
59+
"Line -1:-1: java.lang.IllegalArgumentException: Creating repeated strings with more than [1048576] bytes is not supported",
60+
"Line -1:-1: evaluation of [] failed, treating result as null. Only first 20 failures recorded."
6161
);
6262
}
6363

0 commit comments

Comments
 (0)