From caf2f6bfec5719e102e6e7f32bb2bb87d528fda5 Mon Sep 17 00:00:00 2001 From: Karolin Varner Date: Wed, 18 Dec 2024 13:44:45 +0100 Subject: [PATCH] chore: Remove unused warning in api integration test --- rosenpass/tests/api-integration-tests-api-setup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rosenpass/tests/api-integration-tests-api-setup.rs b/rosenpass/tests/api-integration-tests-api-setup.rs index e43ee2a..bb5ff8c 100644 --- a/rosenpass/tests/api-integration-tests-api-setup.rs +++ b/rosenpass/tests/api-integration-tests-api-setup.rs @@ -39,7 +39,7 @@ impl Drop for KillChild { // system is a bit broken; there is probably a few functions that just restart on EINTR // so the signal is absorbed loop { - rustix::process::kill_process(pid, Term).discard_result(); + kill_process(pid, Term).discard_result(); if self.0.try_wait().unwrap().is_some() { break; }