chore: Remove unused warning in api integration test

This commit is contained in:
Karolin Varner
2024-12-18 13:44:45 +01:00
committed by David Niehues
parent d398ad369e
commit caf2f6bfec

View File

@@ -39,7 +39,7 @@ impl Drop for KillChild {
// system is a bit broken; there is probably a few functions that just restart on EINTR // system is a bit broken; there is probably a few functions that just restart on EINTR
// so the signal is absorbed // so the signal is absorbed
loop { loop {
rustix::process::kill_process(pid, Term).discard_result(); kill_process(pid, Term).discard_result();
if self.0.try_wait().unwrap().is_some() { if self.0.try_wait().unwrap().is_some() {
break; break;
} }