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

clippy: fix warnings introduced with Rust 1.67.0

This commit is contained in:
Daniel Hofstetter 2023-01-27 10:29:45 +01:00
parent fc7e51a4f8
commit f6b646e4e5
172 changed files with 835 additions and 1034 deletions

View file

@ -26,7 +26,7 @@ fn test_count_bytes_large_stdin() {
128 * 1024,
] {
let data = vec_of_size(n);
let expected = format!("{}\n", n);
let expected = format!("{n}\n");
new_ucmd!()
.args(&["-c"])
.pipe_in(data)