Skip to content

Commit 797ef59

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ public class ReverseStringRecursiveTest {
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'",
1919
"'MixOf123AndText!', '!txeTdnA321fOxiM'"})
20-
public void testReverseWithLoop(String input, String expectedOutput) {
20+
public void
21+
testReverseUsingStringBuilder(String input, String expectedOutput) {
2122
assertEquals(expectedOutput, ReverseStringRecursive.reverseUsingStringBuilder(input));
2223
}
2324
}

0 commit comments

Comments
 (0)