From ba77e3a2fed6b6d5aa8bf8dccb191341a355400d Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Fri, 20 Sep 2024 17:02:02 -0300 Subject: [PATCH] removed unused mods on test module --- src/tests.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/tests.rs b/src/tests.rs index 992a40d..397389c 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -1,6 +1,5 @@ #[cfg(test)] mod tests { - mod uuid_tests { use crate::init; use uuid::Uuid; use std::vec; @@ -14,7 +13,6 @@ mod tests { assert!(validation.is_ok()) } - #[test] fn uuid_output_throws_if_passed_args() { @@ -24,7 +22,4 @@ mod tests { assert_eq!(output,"") } - } - - mod markers_tests {} }