We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 310f0d2 commit 5e60b7eCopy full SHA for 5e60b7e
1 file changed
tests/managed.rs
@@ -414,7 +414,10 @@ fn reap_exited_ptys_clears_dead_slot_keeps_entry() {
414
415
// Spawn a short-lived process that exits immediately
416
#[cfg(unix)]
417
- let (shell, arg) = (std::env::var("SHELL").unwrap_or_else(|_| "/bin/sh".into()), "-c");
+ let (shell, arg) = (
418
+ std::env::var("SHELL").unwrap_or_else(|_| "/bin/sh".into()),
419
+ "-c",
420
+ );
421
#[cfg(windows)]
422
let (shell, arg) = ("cmd.exe".to_string(), "/c");
423
0 commit comments