Skip to content

Commit df58c54

Browse files
fix build
1 parent 28322e7 commit df58c54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/fishercoder/_1389Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ public void test1() {
2121

2222
@Test
2323
public void test2() {
24-
assertArrayEquals(new int[]{1, 2, 3, 4, 0}, solution1.createTargetArray(new int[]{0, 1, 2, 3, 0}, new int[]{0, 1, 2, 3, 4}));
24+
assertArrayEquals(new int[]{0, 1, 2, 3, 4}, solution1.createTargetArray(new int[]{1, 2, 3, 4, 0}, new int[]{0, 1, 2, 3, 0}));
2525
}
2626

2727
@Test
2828
public void test3() {
29-
assertArrayEquals(new int[]{1}, solution1.createTargetArray(new int[]{0}, new int[]{1}));
29+
assertArrayEquals(new int[]{1}, solution1.createTargetArray(new int[]{1}, new int[]{0}));
3030
}
3131

3232
}

0 commit comments

Comments
 (0)