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

fix clippy errors related to clap upgrade from 3.0.10 to 3.1.6

This commit is contained in:
Terts Diepraam 2022-03-17 14:40:40 +01:00
parent 59440d35c0
commit 20212be4c8
107 changed files with 532 additions and 529 deletions

View file

@ -45,7 +45,7 @@ fn test_link_one_argument() {
let (_, mut ucmd) = at_and_ucmd!();
let file = "test_link_argument";
ucmd.args(&[file]).fails().stderr_contains(
"error: The argument '<FILES>...' requires at least 2 values, but only 1 was provide",
"error: The argument '<FILES>...' requires at least 2 values but only 1 was provided",
);
}