Skip to content

Commit 727dd51

Browse files
refactor 189
1 parent 796ecc2 commit 727dd51

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/test/java/com/fishercoder/_189Test.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@
88
public class _189Test {
99
private static _189.Solution1 solution1;
1010
private static _189.Solution2 solution2;
11-
private static _189.Solution3 solution3;
1211
private static int[] nums;
1312

1413
@BeforeClass
1514
public static void setup() {
1615
solution1 = new _189.Solution1();
1716
solution2 = new _189.Solution2();
18-
solution3 = new _189.Solution3();
1917
}
2018

2119
@Test
@@ -34,11 +32,4 @@ public void test2() {
3432
CommonUtils.printArray(nums);
3533
}
3634

37-
@Test
38-
public void test3() {
39-
nums = new int[]{1, 2, 3};
40-
41-
solution3.rotate(nums, 1);
42-
CommonUtils.printArray(nums);
43-
}
4435
}

0 commit comments

Comments
 (0)