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:
parent
5db200b6ab
commit
a4439800e6
1 changed files with 0 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue