Skip to content

Commit 0383a4c

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 8ce5d29 commit 0383a4c

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private static void casesForString(
9898
// Example: a case-insensitive ES regexp query for the pattern `weiß` won't match the value `WEISS` (but will match `WEIß`).
9999
// Or `ʼn` (U+0149) vs. `ʼN` (U+02BC U+004E).
100100
String text, caseChanged;
101-
for (text = textSupplier.get(), caseChanged = randomCasing(text); text.length() != caseChanged.length(); ) {
101+
for (text = textSupplier.get(), caseChanged = randomCasing(text); text.length() != caseChanged.length();) {
102102
text = textSupplier.get();
103103
caseChanged = randomCasing(text);
104104
}

0 commit comments

Comments
 (0)