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

bump clap from 3.1.18 to 3.2.15

This commit is contained in:
Daniel Hofstetter 2022-07-29 09:18:03 +02:00
parent 35f6e2a53a
commit fc4544c42b
108 changed files with 218 additions and 223 deletions

View file

@ -86,13 +86,8 @@ fn test_wrap() {
fn test_wrap_no_arg() {
for wrap_param in ["-w", "--wrap"] {
let ts = TestScenario::new(util_name!());
let expected_stderr = &format!(
"error: The argument '--wrap <wrap>\' requires a value but none was \
supplied\n\nUSAGE:\n {1} {0} [OPTION]... [FILE]\n\nFor more \
information try --help",
ts.util_name,
ts.bin_path.to_string_lossy()
);
let expected_stderr = "error: The argument '--wrap <wrap>\' requires a value but none was \
supplied\n\nFor more information try --help";
ts.ucmd()
.arg(wrap_param)
.fails()