fix: day14 tests

This commit is contained in:
Matej Janezic 2022-12-06 21:52:32 +01:00
parent 00000270c2
commit 00000280c8
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 2 additions and 2 deletions

View File

@ -108,11 +108,11 @@ mod tests {
#[test]
fn test_part_one() {
let input = aoc::read_file("test_inputs", 14);
assert_eq!(part_one(input.trim()), Some(1120));
assert_eq!(part_one(input.trim()), Some(2660));
}
#[test]
fn test_part_two() {
let input = aoc::read_file("test_inputs", 14);
assert_eq!(part_two(input.trim()), None);
assert_eq!(part_two(input.trim()), Some(1564));
}
}