diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/header.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/header.rs b/tests/header.rs index 774e5ef..e46044c 100644 --- a/tests/header.rs +++ b/tests/header.rs @@ -18,7 +18,8 @@ fn custom_header_set(tmpdir: TempDir, port: u16, headers: Vec<String>) -> Result .arg("-p") .arg(port.to_string()) .args(headers.iter().flat_map(|h| vec!["--header", h])) - .stdout(Stdio::null()).spawn()?; + .stdout(Stdio::null()) + .spawn()?; sleep(Duration::from_secs(1)); |