Skip to content

Commit 385712e

Browse files
author
alxkm
committed
checkstyle: fix formatting
1 parent 354d1fd commit 385712e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import org.junit.jupiter.params.provider.MethodSource;
77

88
public class PalindromeTest {
9-
109
private static Stream<TestData> provideTestCases() {
1110
return Stream.of(new TestData(null, true), new TestData("", true), new TestData("aba", true), new TestData("123321", true), new TestData("kayak", true), new TestData("abb", false), new TestData("abc", false), new TestData("abc123", false), new TestData("kayaks", false));
1211
}

0 commit comments

Comments
 (0)