apply clippy fixes

This commit is contained in:
Dustin J. Mitchell 2022-12-23 18:56:58 +00:00 committed by Dustin J. Mitchell
parent 88333ac785
commit f1e1095c0a
6 changed files with 32 additions and 32 deletions

View file

@ -36,7 +36,7 @@ fn make_suite_file(suites: &[&'static str]) {
for suite in suites {
content.push_str(format!("suite!({}_tests);\n", suite).as_ref());
}
fs::write(&dest_path, content).unwrap();
fs::write(dest_path, content).unwrap();
}
fn main() {