Skip to content

Commit 9f1b076

Browse files
committed
Fixed format
1 parent d6f287e commit 9f1b076

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/g3601_3700/s3615_longest_palindromic_path_in_graph/SolutionTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ void maxLen3() {
2424

2525
@Test
2626
void maxLen4() {
27-
assertThat(
28-
new Solution().maxLen(3, new int[][] {{2, 0}, {2, 1}}, "mll"), equalTo(2));
27+
assertThat(new Solution().maxLen(3, new int[][] {{2, 0}, {2, 1}}, "mll"), equalTo(2));
2928
}
3029
}

0 commit comments

Comments
 (0)