Skip to content

Commit 7088197

Browse files
fix build
1 parent 0e6c1ca commit 7088197

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

Diff for: src/test/java/com/fishercoder/fourththousand/_3112Test.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ public void setup() {
1818
@Test
1919
public void test1() {
2020
assertArrayEquals(new int[]{0, -1, 4}, solution1
21-
.minimumTime(3, CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray
22-
("[0,1,2],[1,2,1],[0,2,4]"),
21+
.minimumTime(3, CommonUtils
22+
.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray("[0,1,2],[1,2,1],[0,2,4]"),
2323
new int[]{1, 1, 5}));
2424
}
2525
}

Diff for: src/test/java/com/fishercoder/thirdthousand/_2976Test.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,23 @@ public void setup() {
1616

1717
@Test
1818
public void test1() {
19-
assertEquals(28, solution1.minimumCost
20-
("abcd", "acbe",
19+
assertEquals(28, solution1.minimumCost("abcd", "acbe",
2120
new char[]{'a', 'b', 'c', 'c', 'e', 'd'},
2221
new char[]{'b', 'c', 'b', 'e', 'b', 'e'},
2322
new int[]{2, 5, 5, 1, 2, 20}));
2423
}
2524

2625
@Test
2726
public void test2() {
28-
assertEquals(12, solution1.minimumCost
29-
("aaaa", "bbbb",
27+
assertEquals(12, solution1.minimumCost("aaaa", "bbbb",
3028
new char[]{'a', 'c'},
3129
new char[]{'c', 'b'},
3230
new int[]{1, 2}));
3331
}
3432

3533
@Test
3634
public void test3() {
37-
assertEquals(-1, solution1.minimumCost
38-
("abcd", "abce",
35+
assertEquals(-1, solution1.minimumCost("abcd", "abce",
3936
new char[]{'a'},
4037
new char[]{'e'},
4138
new int[]{10000}));

0 commit comments

Comments
 (0)