From f33e60dcf7e59f95bfe75916662992a48dc2eec8 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Mon, 28 Jul 2025 02:28:29 +0400 Subject: [PATCH] chore: windows linting --- tests/common/mod.rs | 2 +- tests/integration_test.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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