test: add new arguments to spawn(...)

This commit is contained in:
Quint Guvernator 2020-06-23 15:02:10 +02:00
parent d246114678
commit 7770de8f7c
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
/*