diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 3d291ed..0e48bde 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -640,7 +640,7 @@ impl BundlerTestHelper { #[cfg(windows)] { let _ = std::process::Command::new("taskkill") - .args(&["/F", "/PID", &child_id.to_string()]) + .args(["/F", "/PID", &child_id.to_string()]) .output(); } diff --git a/tests/integration_test.rs b/tests/integration_test.rs index 51588b4..b536bb2 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -1304,7 +1304,7 @@ fn run_with_timeout(cmd: &mut Command, timeout: Duration) -> std::io::Result