diff --git a/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/TestCompoundWordTokenFilter.java b/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/TestCompoundWordTokenFilter.java index 446f25d8d1d..73c5b5cf699 100644 --- a/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/TestCompoundWordTokenFilter.java +++ b/lucene/analysis/common/src/test/org/apache/lucene/analysis/compound/TestCompoundWordTokenFilter.java @@ -255,12 +255,10 @@ public class TestCompoundWordTokenFilter extends BaseTokenStreamTestCase { assertTokenStreamContents( tf, - new String[] { - "Basfiolsfodralmakaregesäll", "Bas", "fiolsfodral", "fodral", "makare", "gesäll" - }, - new int[] {0, 0, 0, 0, 0, 0}, - new int[] {26, 26, 26, 26, 26, 26}, - new int[] {1, 0, 0, 0, 0, 0}); + new String[] {"Basfiolsfodralmakaregesäll", "Bas", "fiolsfodral", "makare", "gesäll"}, + new int[] {0, 0, 0, 0, 0}, + new int[] {26, 26, 26, 26, 26}, + new int[] {1, 0, 0, 0, 0}); } public void testTokenEndingWithWordComponentOfMinimumLength() throws Exception {