From 8993cfce890c9e38e450fcf4e1a94488ccf5c94a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 20 Dec 2022 00:51:50 -0500 Subject: disable another slow test --- src/bin/2022/day19.rs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/bin/2022/day19.rs b/src/bin/2022/day19.rs index f23fe2d..c282cc2 100644 --- a/src/bin/2022/day19.rs +++ b/src/bin/2022/day19.rs @@ -319,8 +319,11 @@ fn test() { part1(parse(parse::data(2022, 19).unwrap()).unwrap()).unwrap(), 1147 ); - assert_eq!( - part2(parse(parse::data(2022, 19).unwrap()).unwrap()).unwrap(), - 3080 - ); + // takes a long time to run + if false { + assert_eq!( + part2(parse(parse::data(2022, 19).unwrap()).unwrap()).unwrap(), + 3080 + ); + } } -- cgit v1.2.3-54-g00ecf