Skip to content

Commit

Permalink
test: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
oneofthezombies committed Feb 12, 2024
1 parent ce473d1 commit 34bd718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/libs/kill_tree/src/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ mod tests {
let status = match std::fs::read_to_string(&status_path) {
Ok(x) => x,
Err(e) => {
panic!("Failed to read status. error: {}", e);
panic!("Failed to read status. error: {e}");
}
};
let process_info = parse_status(process_id, status_path.display().to_string(), &status)
Expand Down

0 comments on commit 34bd718

Please sign in to comment.