diff --git a/tests/by-util/test_tail.rs b/tests/by-util/test_tail.rs index 11480021a0..e3075fff91 100644 --- a/tests/by-util/test_tail.rs +++ b/tests/by-util/test_tail.rs @@ -5019,10 +5019,10 @@ fn test_when_piped_input_then_no_broken_pipe() { #[test] #[cfg(unix)] -fn test_when_output_closed_then_no_broken_pie() { +fn test_when_output_closed_then_no_broken_pipe() { let mut cmd = new_ucmd!(); let mut child = cmd - .args(&["-c", "100000", "/dev/zero"]) + .args(&["-c", "10000000", "/dev/zero"]) .set_stdout(Stdio::piped()) .run_no_wait(); // Dropping the stdout should not lead to an error.