Skip to content

Commit 06a50fe

Browse files
committed
Fixed checkstyle
1 parent 2fbfea2 commit 06a50fe

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

api/src/test/java/io/kafbat/ui/service/index/ShortWordNGramAnalyzerTest.java

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,19 @@ public void testOffsets(String name, List<String> parts) {
2121
public static Stream<Arguments> provider() {
2222
return Stream.of(
2323
Arguments.of("hello.world.text", List.of(
24-
"he","hel","hell","el","ell","ello","ll","llo","lo","hello",
25-
"wo","wor","worl","or","orl","orld","rl","rld","ld","world","te",
26-
"tex","text","ex","ext","xt"
24+
"he", "hel", "hell", "el", "ell", "ello", "ll", "llo", "lo", "hello",
25+
"wo", "wor", "worl", "or", "orl", "orld", "rl", "rld", "ld", "world", "te",
26+
"tex", "text", "ex", "ext", "xt"
2727
)),
2828
Arguments.of("helloWorldText", List.of(
29-
"he","hel","hell","el","ell","ello","ll","llo","lo","hello",
30-
"wo","wor","worl","or","orl","orld","rl","rld","ld","world","te",
31-
"tex","text","ex","ext","xt"
32-
29+
"he", "hel", "hell", "el", "ell", "ello", "ll", "llo", "lo", "hello",
30+
"wo", "wor", "worl", "or", "orl", "orld", "rl", "rld", "ld", "world", "te",
31+
"tex", "text", "ex", "ext", "xt"
3332
)),
3433
Arguments.of("hello:world:text", List.of(
35-
"he","hel","hell","el","ell","ello","ll","llo","lo","hello",
36-
"wo","wor","worl","or","orl","orld","rl","rld","ld","world","te",
37-
"tex","text","ex","ext","xt"
34+
"he", "hel", "hell", "el", "ell", "ello", "ll", "llo", "lo", "hello",
35+
"wo", "wor", "worl", "or", "orl", "orld", "rl", "rld", "ld", "world", "te",
36+
"tex", "text", "ex", "ext", "xt"
3837
))
3938
);
4039
}

0 commit comments

Comments
 (0)