From e109504086bb8a1e822251ccca399761d92f24fc Mon Sep 17 00:00:00 2001 From: Elliot Wesoff Date: Wed, 8 Oct 2025 00:07:44 -0700 Subject: [PATCH] tests/timeout: remove unnecessary stderr check --- tests/by-util/test_timeout.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/by-util/test_timeout.rs b/tests/by-util/test_timeout.rs index e6752dcea..b04b32203 100644 --- a/tests/by-util/test_timeout.rs +++ b/tests/by-util/test_timeout.rs @@ -192,8 +192,7 @@ fn test_kill_subprocess() { "trap 'echo inside_trap' TERM; sleep 30", ]) .fails_with_code(124) - .stdout_contains("inside_trap") - .stderr_contains("Terminated"); + .stdout_contains("inside_trap"); } #[test]