1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

Fix clippy::uninlined_format_args .

This commit is contained in:
David Campbell 2024-09-19 17:56:27 -04:00
parent 5d986bfb4c
commit 353eb53367
No known key found for this signature in database
GPG key ID: C2E99A0CF863A603
39 changed files with 127 additions and 169 deletions

View file

@ -1448,7 +1448,7 @@ fn test_mv_directory_into_subdirectory_of_itself_fails() {
// check that it also errors out with /
scene
.ucmd()
.arg(format!("{}/", dir1))
.arg(format!("{dir1}/"))
.arg(dir2)
.fails()
.stderr_contains(
@ -1601,7 +1601,7 @@ fn test_acl() {
return;
}
Err(e) => {
println!("test skipped: setfacl failed with {}", e);
println!("test skipped: setfacl failed with {e}");
return;
}
}