Skip to content

Commit

Permalink
Fix clippy zombie_processes warning (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
Malax authored Jan 2, 2025
1 parent 4a1f4aa commit 631560f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions integration-test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ fn main() {
java_child_process
.kill()
.expect("Couldn't kill java process!");

java_child_process
.wait()
.expect("Couldn't wait for java process completion!");
}

fn verify_request(request: &CollectedRequest, expected_gc: JavaGarbageCollector) {
Expand Down

0 comments on commit 631560f

Please sign in to comment.