From a4439800e69c5e16c7de54171e9d0612860ca738 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 2 Sep 2020 12:31:22 -0400 Subject: [PATCH] Remove unnecessary stdout pipes in tests (#7322) --- cli/tests/integration_tests.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index bf532e4045..b8be7262d2 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -3313,7 +3313,6 @@ fn should_not_panic_on_undefined_home_environment_variable() { .arg("run") .arg("cli/tests/echo.ts") .env_remove("HOME") - .stdout(std::process::Stdio::piped()) .spawn() .unwrap() .wait_with_output() @@ -3328,7 +3327,6 @@ fn should_not_panic_on_undefined_deno_dir_environment_variable() { .arg("run") .arg("cli/tests/echo.ts") .env_remove("DENO_DIR") - .stdout(std::process::Stdio::piped()) .spawn() .unwrap() .wait_with_output() @@ -3345,7 +3343,6 @@ fn should_not_panic_on_undefined_deno_dir_and_home_environment_variables() { .arg("cli/tests/echo.ts") .env_remove("DENO_DIR") .env_remove("HOME") - .stdout(std::process::Stdio::piped()) .spawn() .unwrap() .wait_with_output()