ci: fix day 11 tests

This commit is contained in:
Xavier Morel
2024-12-12 12:54:54 +01:00
parent ba720a3394
commit e6dfba7419

View File

@@ -73,7 +73,7 @@ mod tests {
#[test] #[test]
fn test_part_two() { fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY)); let result = part_two("0");
assert_eq!(result, None); assert_eq!(result, Some(22938365706844));
} }
} }