Skip to content

Commit c24ee30

Browse files
authored
Update SolutionTest.java
1 parent 3d4db6a commit c24ee30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/g2001_2100/s2070_most_beautiful_item_for_each_query/SolutionTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class SolutionTest {
1010
@Test
11-
public void maximumBeauty() {
11+
void maximumBeauty() {
1212
int[][] items =
1313
CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
1414
"[1,2],[3,2],[2,4],[5,6],[3,5]");
@@ -18,7 +18,7 @@ public void maximumBeauty() {
1818
}
1919

2020
@Test
21-
public void maximumBeauty2() {
21+
void maximumBeauty2() {
2222
int[][] items =
2323
CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray(
2424
"[1,2],[1,2],[1,3],[1,4]");
@@ -28,7 +28,7 @@ public void maximumBeauty2() {
2828
}
2929

3030
@Test
31-
public void maximumBeauty3() {
31+
void maximumBeauty3() {
3232
int[][] items =
3333
CommonUtils.convertLeetCodeIrregularLengths2DArrayInputIntoJavaArray("[10,1000]");
3434
int[] queries = new int[] {5};

0 commit comments

Comments
 (0)