From fcd5bd08da988494f1befc6f6f2884351e2e9bb0 Mon Sep 17 00:00:00 2001 From: Alextopher Date: Mon, 27 Nov 2023 23:42:30 -0500 Subject: [PATCH] remove day 16 part 2 test because it takes too long --- .../d16-proboscidea-volcanium/src/main.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/advent-of-code-2022/d16-proboscidea-volcanium/src/main.rs b/advent-of-code-2022/d16-proboscidea-volcanium/src/main.rs index f281deb..b6bbf52 100644 --- a/advent-of-code-2022/d16-proboscidea-volcanium/src/main.rs +++ b/advent-of-code-2022/d16-proboscidea-volcanium/src/main.rs @@ -480,10 +480,10 @@ mod tests { assert_eq!(graph.part1(), 1944); } - #[test] - fn test_part2() { - let input = aoc::input_str!(2022, 16); - let graph = make_graph(input); - assert_eq!(graph.part2(), 2679); - } + // #[test] + // fn test_part2() { + // let input = aoc::input_str!(2022, 16); + // let graph = make_graph(input); + // assert_eq!(graph.part2(), 2679); + // } }