From 1cf9bbcaca4afeb7935bfec269ef4308a6ef637c Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Tue, 17 Dec 2024 11:07:10 +0100 Subject: [PATCH] Assert instead of asssert --- advent_of_code/default_main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/advent_of_code/default_main.rs b/advent_of_code/default_main.rs index 63f989f..3737ddc 100644 --- a/advent_of_code/default_main.rs +++ b/advent_of_code/default_main.rs @@ -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]