process: Fix a test on Windows

This commit is contained in:
Alex Crichton 2016-09-07 12:59:46 -07:00 committed by Ivan Petkov
parent 413e1b78a7
commit f4f7bb232e
No known key found for this signature in database
GPG Key ID: 0B431E9837056942

View File

@ -48,5 +48,5 @@ fn simple() {
let status = lp.run(&mut child).unwrap();
assert_eq!(status.code(), Some(2));
assert_eq!(child.id(), id);
assert!(child.kill().is_ok());
drop(child.kill());
}