summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-12-17 02:59:59 -0500
committerJesse Luehrs <doy@tozt.net>2022-12-17 02:59:59 -0500
commita8dcdf90118b210ff751e76e1e332bbde87575d7 (patch)
tree4b8697f2ee2f0a592c10a955f99674e7676a6d87
parent87d04eb2c3e09e4f01a12eb08461b22bbbcf28d6 (diff)
downloadadvent-of-code-a8dcdf90118b210ff751e76e1e332bbde87575d7.tar.gz
advent-of-code-a8dcdf90118b210ff751e76e1e332bbde87575d7.zip
disable the day 16 part 2 test for now
-rw-r--r--src/bin/2022/day16.rs11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/bin/2022/day16.rs b/src/bin/2022/day16.rs
index 77ab621..d4fbeee 100644
--- a/src/bin/2022/day16.rs
+++ b/src/bin/2022/day16.rs
@@ -267,8 +267,11 @@ fn test() {
part1(parse(parse::data(2022, 16).unwrap()).unwrap()).unwrap(),
2359
);
- assert_eq!(
- part2(parse(parse::data(2022, 16).unwrap()).unwrap()).unwrap(),
- 2999
- );
+ // this one takes like 15 minutes to run/:
+ if false {
+ assert_eq!(
+ part2(parse(parse::data(2022, 16).unwrap()).unwrap()).unwrap(),
+ 2999
+ );
+ }
}