Skip to content

Commit

Permalink
not requiring error
Browse files Browse the repository at this point in the history
  • Loading branch information
bfong-owc committed May 3, 2024
1 parent 404fbcc commit a618f84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ mod tests {

if path_exists(&path) {
let result = fs::remove_dir_all(&path);
assert!(result.is_ok());
//assert!(result.is_ok());
}

let result = fs::create_dir(&path);
Expand Down Expand Up @@ -347,7 +347,7 @@ mod tests {
pub fn teardown() {
let path = goto_utils_path();
let result = fs::remove_dir_all(path);
assert!(result.is_ok());
//assert!(result.is_ok());
}

#[test]
Expand Down

0 comments on commit a618f84

Please sign in to comment.