Skip to content

Commit

Permalink
run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
prsabahrami committed Sep 26, 2024
1 parent 77a489b commit 135b3c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/tests/src/test_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,9 @@ impl TestBuilder {
let path_to_check = if path.starts_with('/') {
PathBuf::from(path)
} else if path.starts_with("~/") {
dirs::home_dir().unwrap().join(path.strip_prefix("~/").unwrap())
dirs::home_dir()
.unwrap()
.join(path.strip_prefix("~/").unwrap())
} else {
cwd.join(path)
};
Expand Down

0 comments on commit 135b3c6

Please sign in to comment.