don't proactively remove tmp dir contents

This commit is contained in:
evan-schott 2024-01-03 13:48:18 -08:00
parent 28dae76945
commit 9c3a894415

View File

@ -183,8 +183,8 @@ mod tests {
});
// Clear tmp directory
std::fs::remove_dir_all(registry).unwrap();
std::fs::remove_dir_all(project_directory).unwrap();
// std::fs::remove_dir_all(registry).unwrap();
// std::fs::remove_dir_all(project_directory).unwrap();
}
#[test]
@ -226,7 +226,7 @@ mod tests {
});
// Clear tmp directory
std::fs::remove_dir_all(project_directory).unwrap();
// std::fs::remove_dir_all(project_directory).unwrap();
}
}