Skip to content

Commit 7ab6393

Browse files
author
“gozhort”
committed
fix: resolve Checkstyle whitespace issues
1 parent 797ef59 commit 7ab6393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/strings/ReverseStringRecursiveTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class ReverseStringRecursiveTest {
1616

1717
@ParameterizedTest
1818
@CsvSource({"'Hello World', 'dlroW olleH'", "'helloworld', 'dlrowolleh'", "'123456789', '987654321'", "'', ''", "'A', 'A'", "'!123 ABC xyz!', '!zyx CBA 321!'", "'Abc 123 Xyz', 'zyX 321 cbA'", "'12.34,56;78:90', '09:87;65,43.21'", "'abcdEFGHiJKL', 'LKJiHGFEdcba'",
19-
"'MixOf123AndText!', '!txeTdnA321fOxiM'"})
19+
"'MixOf123AndText!', '!txeTdnA321fOxiM'"})
2020
public void
2121
testReverseUsingStringBuilder(String input, String expectedOutput) {
2222
assertEquals(expectedOutput, ReverseStringRecursive.reverseUsingStringBuilder(input));

0 commit comments

Comments
 (0)