From df527b1df6c62f4c2d9c377ad2fe333963be196d Mon Sep 17 00:00:00 2001 From: lordofwizard Date: Wed, 16 Oct 2024 21:41:32 +0530 Subject: [PATCH] Removed build deps and added quite in tests --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bc3b0d1..8cb8f46 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,7 +11,6 @@ fn add(a: i32, b: i32) -> i32 { #[cfg(test)] mod tests { use super::*; - #[test] fn test_add() { assert_eq!(add(2, 3), 5);