aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fds.rs')
-rw-r--r--tests/fds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fds.rs b/tests/fds.rs
index 8a6bb19..8b64d3f 100644
--- a/tests/fds.rs
+++ b/tests/fds.rs
@@ -23,7 +23,7 @@ fn test_fds() {
pty.resize(pty_process::Size::new(24, 80)).unwrap();
let mut child = pty_process::blocking::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();