Fixing an invalid 'And' condition while checking for process exited already
This commit is contained in:
parent
6b1a61f208
commit
1ca9e25e54
|
|
@ -106,7 +106,7 @@ namespace E2ETests
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
if (hostProcess != null & !hostProcess.HasExited)
|
if (hostProcess != null && !hostProcess.HasExited)
|
||||||
{
|
{
|
||||||
//Shutdown the host process
|
//Shutdown the host process
|
||||||
hostProcess.Kill();
|
hostProcess.Kill();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue