Skip to content

Commit 0504f3b

Browse files
author
alxkm
committed
checkstyle: fix formatting
1 parent ed46304 commit 0504f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
public class ReverseStringRecursiveTest {
99
@ParameterizedTest
1010
@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'",
11-
"'MixOf123AndText!', '!txeTdnA321fOxiM'"})
11+
"'MixOf123AndText!', '!txeTdnA321fOxiM'"})
1212
public void
1313
testReverseString(String input, String expectedOutput) {
1414
assertEquals(expectedOutput, ReverseStringRecursive.reverse(input));

0 commit comments

Comments
 (0)