Add missing test values in Rust Day 8/9

This commit is contained in:
Tobias Berger 2022-12-12 10:20:19 +01:00
parent 2437fc0e6f
commit 57216e6c0b
Signed by: toby
GPG key ID: 2D05EFAB764D6A88
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ mod tests {
#[test]
fn test_with_solution() {
assert_eq!(super::part_2(crate::INPUT), 0);
assert_eq!(super::part_2(crate::INPUT), 313200);
}
#[test]

View file

@ -45,7 +45,7 @@ mod tests {
#[test]
fn test_with_solution() {
assert_eq!(super::part_1(&crate::parse_input(crate::INPUT)), 0);
assert_eq!(super::part_1(&crate::parse_input(crate::INPUT)), 6271);
}
#[test]