Skip to content

Commit c672956

Browse files
committed
Fixed format
1 parent e1b9123 commit c672956

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/java/g3401_3500/s3462_maximum_sum_with_at_most_k_elements/SolutionTest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ void maxSum2() {
2222

2323
@Test
2424
void maxSum3() {
25-
assertThat(
26-
new Solution().maxSum(new int[][] {{}}, new int[] {2, 2}, 3),
27-
equalTo(0L));
25+
assertThat(new Solution().maxSum(new int[][] {{}}, new int[] {2, 2}, 3), equalTo(0L));
2826
}
2927
}

0 commit comments

Comments
 (0)