From f4484200d872dcfa507f699abf371ae903376b51 Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 9 Jun 2026 22:22:47 -0400 Subject: [PATCH] Saving test --- tests/tests.rs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tests/tests.rs b/tests/tests.rs index 1e68fb2..293b229 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -1,11 +1,8 @@ -#[cfg(test)] -mod tests { - #[test] - fn test_demo() { - let i = 0; +#[test] +fn test_demo() { + let i = 0; - assert_eq!(0, i, "Values should match {} {}", 0, 1); - } + assert_eq!(0, i, "Values should match {} {}", 0, 1); }