1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-16 19:56:17 +00:00

Merge pull request #2745 from thomasqueirozb/chmod_uresult

chmod: use UResult
This commit is contained in:
Sylvestre Ledru 2021-11-19 21:38:31 +01:00 committed by GitHub
commit da69ab19db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 58 additions and 44 deletions

View file

@ -541,7 +541,7 @@ fn test_no_operands() {
.arg("777")
.fails()
.code_is(1)
.stderr_is("chmod: missing operand");
.usage_error("missing operand");
}
#[test]