We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2560e0b commit 7a3b8efCopy full SHA for 7a3b8ef
src/test/java/com/fishercoder/_56Test.java
@@ -4,7 +4,7 @@
4
import org.junit.jupiter.api.BeforeEach;
5
import org.junit.jupiter.api.Test;
6
7
-import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertArrayEquals;
8
9
public class _56Test {
10
private static _56.Solution1 solution1;
@@ -29,7 +29,7 @@ public void test1() {
29
{2, 4},
30
{5, 5}
31
};
32
- assertEquals(expected, solution1.merge(intervals));
+ assertArrayEquals(expected, solution1.merge(intervals));
33
}
34
35
0 commit comments