mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
clippy: fix unnecessary_trailing_comma lint
https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_trailing_comma
This commit is contained in:
committed by
Daniel Hofstetter
parent
0626a4d103
commit
e88a3063a6
@@ -3376,7 +3376,7 @@ fn test_check_blake3_tagged(
|
||||
None => String::new(),
|
||||
};
|
||||
|
||||
let tagged = format!("BLAKE3{len} (FILE) = {digest}",);
|
||||
let tagged = format!("BLAKE3{len} (FILE) = {digest}");
|
||||
|
||||
ucmd.arg("-c")
|
||||
.arg("-a")
|
||||
|
||||
Reference in New Issue
Block a user