summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-12-20 00:51:50 -0500
committerJesse Luehrs <doy@tozt.net>2022-12-20 00:51:50 -0500
commit8993cfce890c9e38e450fcf4e1a94488ccf5c94a (patch)
tree608391188c7dbc87c1c9bef96403aa95d44cbf95
parent23c20b9f24283347bc33469eca52193635d98476 (diff)
downloadadvent-of-code-8993cfce890c9e38e450fcf4e1a94488ccf5c94a.tar.gz
advent-of-code-8993cfce890c9e38e450fcf4e1a94488ccf5c94a.zip
disable another slow test
-rw-r--r--src/bin/2022/day19.rs11
1 files 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
+ );
+ }
}