Skip to content

Commit a35a91d

Browse files
committed
Improved test
1 parent c672956 commit a35a91d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

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

0 commit comments

Comments
 (0)