Skip to content

Commit 511daff

Browse files
committed
Fix formatting for ReverseStringTest.java as per clang-format linter
1 parent 47e9a8b commit 511daff

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ public void testReverseStringUsingStackWithNullInput() {
4848

4949
@ParameterizedTest
5050
@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'",
51-
"'MixOf123AndText!', '!txeTdnA321fOxiM'"})
52-
public void testReverseStringUsingRecursion(String input, String expectedOutput) {
51+
"'MixOf123AndText!', '!txeTdnA321fOxiM'"})
52+
public void
53+
testReverseStringUsingRecursion(String input, String expectedOutput) {
5354
assertEquals(expectedOutput, ReverseString.reverseStringUsingRecursion(input));
5455
}
5556
}

0 commit comments

Comments
 (0)