aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-02-05 14:16:41 -0500
committerJesse Luehrs <doy@tozt.net>2023-02-05 14:16:41 -0500
commit9656f9f0382e508c4e9d35f160a7a9e6923f66f3 (patch)
tree543a0b1421e1a0a5be869cb8a6329942354f7b11 /tests
parent2fba99a5b7db0eab54febaecf57a4adb4b9046b6 (diff)
downloadpty-process-9656f9f0382e508c4e9d35f160a7a9e6923f66f3.tar.gz
pty-process-9656f9f0382e508c4e9d35f160a7a9e6923f66f3.zip
clippy
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'; <>",
])