Skip to content

Commit

Permalink
don't proactively remove tmp dir contents
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-schott committed Jan 3, 2024
1 parent 28dae76 commit 9c3a894
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions leo/cli/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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();
}
}

Expand Down

0 comments on commit 9c3a894

Please sign in to comment.