Assert instead of asssert

This commit is contained in:
2024-12-17 11:07:10 +01:00
parent c972d803a4
commit 1cf9bbcaca

View File

@@ -15,14 +15,13 @@ fn main() {
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_1() {
let test_input = include_str!("../test.txt");
asssert_eq!(solve_1(test_input), _);
assert_eq!(solve_1(test_input), _);
}
#[test]