Remove a redundant condition in expect_stdout

When the loop exits, either the process has stopped running,
or the deadline has passed.

If the process is still running, we want to kill it.
This commit is contained in:
teor 2020-10-20 19:51:47 +10:00 committed by Deirdre Connolly
parent 0343e28d3a
commit 17a3612b36
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ impl<T> TestChild<T> {
}
}
if self.past_deadline() && self.is_running() {
if self.is_running() {
// If the process exits between is_running and kill, we will see
// spurious errors here. If that happens, ignore "no such process"
// errors from kill.