mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Clippy fixes in multiple crates
This commit is contained in:
parent
5a726e1ab3
commit
8458bf1387
10 changed files with 39 additions and 40 deletions
|
@ -475,7 +475,7 @@ fn test_mv_numbered_if_existing_backup_existing() {
|
|||
|
||||
assert!(at.file_exists(file_b));
|
||||
assert!(at.file_exists(file_b_backup));
|
||||
assert!(at.file_exists(&*format!("{}.~2~", file_b)));
|
||||
assert!(at.file_exists(&format!("{}.~2~", file_b)));
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -496,7 +496,7 @@ fn test_mv_numbered_if_existing_backup_nil() {
|
|||
|
||||
assert!(at.file_exists(file_b));
|
||||
assert!(at.file_exists(file_b_backup));
|
||||
assert!(at.file_exists(&*format!("{}.~2~", file_b)));
|
||||
assert!(at.file_exists(&format!("{}.~2~", file_b)));
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue