summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-23 03:40:39 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-23 03:40:39 -0500
commit747c6c27661f982ce0a7da06b99d35b173d3bf1a (patch)
treed608b1e30e99e172e94b53fb5ef171b47397fc7e
parent01197254cc1283ecdd44eac84975925919afd235 (diff)
downloadadvent-of-code-747c6c27661f982ce0a7da06b99d35b173d3bf1a.tar.gz
advent-of-code-747c6c27661f982ce0a7da06b99d35b173d3bf1a.zip
tests
-rw-r--r--src/2021/23/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2021/23/mod.rs b/src/2021/23/mod.rs
index f5b64a0..3abb878 100644
--- a/src/2021/23/mod.rs
+++ b/src/2021/23/mod.rs
@@ -1753,10 +1753,10 @@ pub fn part2(burrow: Burrow) -> Result<i64> {
fn test() {
assert_eq!(
part1(parse(parse::data(2021, 23).unwrap()).unwrap()).unwrap(),
- 0
+ 10607
);
assert_eq!(
part2(parse(parse::data(2021, 23).unwrap()).unwrap()).unwrap(),
- 0
+ 59071
);
}