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

tests/chmod: change normal error to usage error

This commit is contained in:
Thomas Queiroz 2021-11-12 18:29:28 -03:00
parent 670ed6324b
commit fed596a23b
No known key found for this signature in database
GPG key ID: 229D2DDF7ECA5F8F

View file

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