fix: impossible include

This commit is contained in:
Strix 2023-10-14 22:39:17 +02:00
parent f378e685f9
commit 1bfd96d7bb
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

View file

@ -11,7 +11,6 @@ pub mod filesystem;
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use crate::filesystem::Fileify;
#[cfg(feature = "dom")] #[cfg(feature = "dom")]
#[test] #[test]
@ -33,6 +32,7 @@ mod tests {
#[cfg(feature = "fs")] #[cfg(feature = "fs")]
#[test] #[test]
fn fs() { fn fs() {
use crate::filesystem::Fileify;
if let Ok(_) = std::path::Path::new("./file").ensure_file() { if let Ok(_) = std::path::Path::new("./file").ensure_file() {
let _ = std::fs::remove_file("./file"); let _ = std::fs::remove_file("./file");
} }