summaryrefslogtreecommitdiffstats
path: root/src/2021/22/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/2021/22/mod.rs')
-rw-r--r--src/2021/22/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2021/22/mod.rs b/src/2021/22/mod.rs
index 8348693..91f56f4 100644
--- a/src/2021/22/mod.rs
+++ b/src/2021/22/mod.rs
@@ -144,10 +144,10 @@ pub fn part2(reactor: Reactor) -> Result<i64> {
fn test() {
assert_eq!(
part1(parse(parse::data(2021, 22).unwrap()).unwrap()).unwrap(),
- 0
+ 570915
);
assert_eq!(
part2(parse(parse::data(2021, 22).unwrap()).unwrap()).unwrap(),
- 0
+ 1268313839428137
);
}