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; }