diff --git a/pueue/tests/helper/fixtures.rs b/pueue/tests/helper/fixtures.rs index ccfc8af2..e9005773 100644 --- a/pueue/tests/helper/fixtures.rs +++ b/pueue/tests/helper/fixtures.rs @@ -33,7 +33,7 @@ impl Drop for PueueDaemon { fn drop(&mut self) { // The daemon runs in background tokio task. // Use this handle to make sure that it gets always killed. - self.join_handle.abort_handle(); + let _ = self.join_handle.abort_handle(); } }