aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/winch.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/winch.rs b/tests/winch.rs
index ae3c1a4..d97e9aa 100644
--- a/tests/winch.rs
+++ b/tests/winch.rs
@@ -8,7 +8,7 @@ fn test_winch_std() {
let pts = pty.pts().unwrap();
pty.resize(pty_process::Size::new(24, 80)).unwrap();
let mut child = pty_process::blocking::Command::new("perl")
- .args(&[
+ .args([
"-E",
"$|++; $SIG{WINCH} = sub { say 'WINCH' }; say 'started'; <>",
])