aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fds_async.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fds_async.rs')
-rw-r--r--tests/fds_async.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fds_async.rs b/tests/fds_async.rs
index 7710789..9e0bc15 100644
--- a/tests/fds_async.rs
+++ b/tests/fds_async.rs
@@ -52,7 +52,7 @@ fn test_fds_async() {
pty.resize(pty_process::Size::new(24, 80)).unwrap();
let mut child = pty_process::Command::new("perl")
.arg("-Efor my $fd (0..255) { open my $fh, \"<&=$fd\"; print $fd if stat $fh }; say")
- .stderr(Some(std::process::Stdio::null()))
+ .stderr(std::process::Stdio::null())
.spawn(&pty)
.unwrap();