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

seq: update to clap 4

This commit is contained in:
Terts Diepraam 2022-09-30 16:31:12 +02:00
parent d92f2f6195
commit 4cfc90c077
3 changed files with 13 additions and 20 deletions

View file

@ -26,13 +26,13 @@ fn test_hex_rejects_sign_after_identifier() {
.fails()
.no_stdout()
.stderr_contains("which wasn't expected, or isn't valid in this context")
.stderr_contains("For more information try --help");
.stderr_contains("For more information try '--help'");
new_ucmd!()
.args(&["-0x+123ABC"])
.fails()
.no_stdout()
.stderr_contains("which wasn't expected, or isn't valid in this context")
.stderr_contains("For more information try --help");
.stderr_contains("For more information try '--help'");
}
#[test]