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

numfmt: ignore stdin write error

This commit is contained in:
sbentmar 2022-01-15 20:50:49 +01:00
parent 4a7d313712
commit 413bff26f8

View file

@ -589,6 +589,7 @@ fn test_invalid_argument_returns_status_1() {
new_ucmd!() new_ucmd!()
.args(&["--header=hello"]) .args(&["--header=hello"])
.pipe_in("53478") .pipe_in("53478")
.ignore_stdin_write_error()
.fails() .fails()
.code_is(1); .code_is(1);
} }