From 413bff26f83300d9b49f9f6fd4687a097ab63357 Mon Sep 17 00:00:00 2001 From: sbentmar Date: Sat, 15 Jan 2022 20:50:49 +0100 Subject: [PATCH] numfmt: ignore stdin write error --- tests/by-util/test_numfmt.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/by-util/test_numfmt.rs b/tests/by-util/test_numfmt.rs index c7dea620c..0086c25e1 100644 --- a/tests/by-util/test_numfmt.rs +++ b/tests/by-util/test_numfmt.rs @@ -589,6 +589,7 @@ fn test_invalid_argument_returns_status_1() { new_ucmd!() .args(&["--header=hello"]) .pipe_in("53478") + .ignore_stdin_write_error() .fails() .code_is(1); }