Skip to content

Commit

Permalink
Merge bee5ab6 into 2e0a882
Browse files Browse the repository at this point in the history
  • Loading branch information
feloy authored May 15, 2023
2 parents 2e0a882 + bee5ab6 commit e049267
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/integration/cmd_dev_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ echo "$@"
},
})
Expect(err).ShouldNot(HaveOccurred())
defer devSession.Kill()
defer func() {
devSession.Kill()
devSession.WaitEnd()
}()

Expect(string(stderrBytes)).Should(MatchRegexp("timeout \\([^()]+\\) while waiting for Podman version"))
})
Expand Down

0 comments on commit e049267

Please sign in to comment.