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:
parent
5d986bfb4c
commit
353eb53367
39 changed files with 127 additions and 169 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue