Skip to content

Commit

Permalink
Small correction [run ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
50U10FCA7 committed Sep 22, 2023
1 parent 14590c5 commit a478037
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ mod spec {

fn load_file(path: impl AsRef<str>) -> Vec<u8> {
let path = path.as_ref();
fs::read(path).unwrap_or_else(|| panic!("Failed to load `{path}` file"))
fs::read(path)
.unwrap_or_else(|_| panic!("Failed to load `{path}` file"))
}

#[tokio::test]
Expand Down

0 comments on commit a478037

Please sign in to comment.