Skip to content

Commit df7a9cb

Browse files
[LEET-3450] fix build
1 parent 3636dab commit df7a9cb

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.fishercoder.fourththousand;
22

3+
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
35
import com.fishercoder.common.utils.CommonUtils;
46
import com.fishercoder.solutions.fourththousand._3450;
57
import org.junit.jupiter.api.BeforeEach;
68
import org.junit.jupiter.api.Test;
79

8-
import static org.junit.jupiter.api.Assertions.assertEquals;
9-
1010
public class _3450Test {
1111
private _3450.Solution1 solution1;
1212

@@ -17,6 +17,10 @@ public void setup() {
1717

1818
@Test
1919
public void test1() {
20-
assertEquals(3, solution1.maxStudentsOnBench(CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray("[1,2],[2,2],[3,3],[1,3],[2,3]")));
20+
assertEquals(
21+
3,
22+
solution1.maxStudentsOnBench(
23+
CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
24+
"[1,2],[2,2],[3,3],[1,3],[2,3]")));
2125
}
2226
}

0 commit comments

Comments
 (0)