diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-09-02 12:31:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 18:31:22 +0200 |
commit | a4439800e69c5e16c7de54171e9d0612860ca738 (patch) | |
tree | 06a1b0fb270b3779ce806156c11da9ba04e73980 /cli/tests/integration_tests.rs | |
parent | 5db200b6abcf335b9caad94c4992aac8a04d6caf (diff) |
Remove unnecessary stdout pipes in tests (#7322)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index bf532e404..b8be7262d 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() |