diff --git a/aoc2020/src/day11.rs b/aoc2020/src/day11.rs index 5f5c9dd..b438df0 100644 --- a/aoc2020/src/day11.rs +++ b/aoc2020/src/day11.rs @@ -217,6 +217,7 @@ mod tests { } #[test] + #[ignore] fn part1_real() { assert_eq!(part1(INPUT).unwrap(), 2427); } @@ -227,6 +228,7 @@ mod tests { } #[test] + #[ignore] fn part2_real() { assert_eq!(part2(INPUT).unwrap(), 2199); }