From 1bfd96d7bb322880eb2ad6c3197d68ba8ed34b7b Mon Sep 17 00:00:00 2001 From: Raine Date: Sat, 14 Oct 2023 22:39:17 +0200 Subject: [PATCH] fix: impossible include --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 96b64e9..17f0574 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,6 @@ pub mod filesystem; #[cfg(test)] mod tests { - use crate::filesystem::Fileify; #[cfg(feature = "dom")] #[test] @@ -33,6 +32,7 @@ mod tests { #[cfg(feature = "fs")] #[test] fn fs() { + use crate::filesystem::Fileify; if let Ok(_) = std::path::Path::new("./file").ensure_file() { let _ = std::fs::remove_file("./file"); }