From 48280300ac1a474cd6c811903be139bc97b672f8 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 22 Sep 2025 19:05:49 +0800 Subject: Completed tests of MemberManager and VirtualFileManager --- crates/env/env_test/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crates/env/env_test/src/lib.rs') diff --git a/crates/env/env_test/src/lib.rs b/crates/env/env_test/src/lib.rs index 7c9fbcb..9ea3ecc 100644 --- a/crates/env/env_test/src/lib.rs +++ b/crates/env/env_test/src/lib.rs @@ -11,7 +11,7 @@ pub mod test_vault_setup_and_member_register; #[cfg(test)] pub mod test_virtual_file_creation_and_update; -pub async fn get_and_correct_test_dir(area: &str) -> Result { +pub async fn get_test_dir(area: &str) -> Result { let dir = current_dir()?.join(".temp").join("test").join(area); if !dir.exists() { std::fs::create_dir_all(&dir)?; @@ -20,6 +20,5 @@ pub async fn get_and_correct_test_dir(area: &str) -> Result