Skip to content

Commit 12d86a1

Browse files
un-ignore long running tests
1 parent 7752308 commit 12d86a1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/test/java/com/fishercoder/_1104Test.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,13 @@ public void test5() {
5050
}
5151

5252
@Test
53-
@Ignore
5453
public void test6() {
55-
//takes too long to finish, ignore to let build pass
5654
expected = Arrays.asList(1, 2, 6, 11, 24, 47, 97, 188, 390, 754, 1562, 3018, 6250, 12075, 25000, 48303, 100000);
5755
assertEquals(expected, solution1.pathInZigZagTree(100000));
5856
}
5957

6058
@Test
61-
@Ignore
6259
public void test7() {
63-
//takes too long to finish, ignore to let build pass
6460
expected = Arrays.asList(1, 3, 5, 12, 23, 48, 94, 195, 377, 781, 1509, 3125, 6037, 12500, 24151, 50000, 96607, 200000);
6561
assertEquals(expected, solution1.pathInZigZagTree(200000));
6662
}

0 commit comments

Comments
 (0)