removed unused mods on test module

This commit is contained in:
Valmo Trindade
2024-09-20 17:02:02 -03:00
parent 154db5c681
commit ba77e3a2fe

View File

@@ -1,6 +1,5 @@
#[cfg(test)]
mod tests {
mod uuid_tests {
use crate::init;
use uuid::Uuid;
use std::vec;
@@ -15,7 +14,6 @@ mod tests {
assert!(validation.is_ok())
}
#[test]
fn uuid_output_throws_if_passed_args() {
let extension = init().testing();
@@ -24,7 +22,4 @@ mod tests {
assert_eq!(output,"")
}
}
mod markers_tests {}
}