From 7770de8f7c6fdedd97962a628dbb4f99385012db Mon Sep 17 00:00:00 2001 From: Quint Guvernator Date: Tue, 23 Jun 2020 15:02:10 +0200 Subject: [PATCH] test: add new arguments to spawn(...) --- src/process.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/process.rs b/src/process.rs index 72cea33..41d72af 100644 --- a/src/process.rs +++ b/src/process.rs @@ -518,7 +518,7 @@ mod tests { #[test] fn test_start() { - let _ = spawn(&["echo".into(), "hi".into()], &[], true); + let _ = spawn(&["echo".into(), "hi".into()], &[], true, false); } /* @@ -641,7 +641,7 @@ mod tests { #[test] fn test_start() { - let _ = spawn(&["echo".into(), "hi".into()], &[], true); + let _ = spawn(&["echo".into(), "hi".into()], &[], true, false); } /*