From 01a7d5be4077db43b8b02b7285730bb203d68917 Mon Sep 17 00:00:00 2001 From: mo8it Date: Thu, 26 Feb 2026 16:33:55 +0100 Subject: [PATCH] Show output --- tests/integration_tests.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index bd8ef544..528a1293 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -62,11 +62,7 @@ impl<'a> Cmd<'a> { cmd.args(self.args).stdin(Stdio::null()); let status = match self.output { - None => cmd - .stdout(Stdio::null()) - .stderr(Stdio::null()) - .status() - .unwrap(), + None => cmd.status().unwrap(), Some(FullStdout(stdout)) => { let output = cmd.stderr(Stdio::null()).output().unwrap(); assert_eq!(from_utf8(&output.stdout).unwrap(), stdout);