1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-08 23:28:18 -05:00

Remove unnecessary stdout pipes in tests (#7322)

This commit is contained in:
Ryan Dahl 2020-09-02 12:31:22 -04:00 committed by GitHub
parent 5db200b6ab
commit a4439800e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()