diff options
Diffstat (limited to 'cli/tests/integration/eval_tests.rs')
-rw-r--r-- | cli/tests/integration/eval_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration/eval_tests.rs b/cli/tests/integration/eval_tests.rs index 99a0d674f..daf1d8561 100644 --- a/cli/tests/integration/eval_tests.rs +++ b/cli/tests/integration/eval_tests.rs @@ -8,7 +8,7 @@ fn eval_p() { .arg("eval") .arg("-p") .arg("1+2") - .stdout(std::process::Stdio::piped()) + .stdout_piped() .spawn() .unwrap() .wait_with_output() @@ -28,7 +28,7 @@ fn eval_randomness() { .arg("eval") .arg("-p") .arg("Math.random()") - .stdout(std::process::Stdio::piped()) + .stdout_piped() .spawn() .unwrap() .wait_with_output() |