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
|
||||
{
|
||||
if (hostProcess != null & !hostProcess.HasExited)
|
||||
if (hostProcess != null && !hostProcess.HasExited)
|
||||
{
|
||||
//Shutdown the host process
|
||||
hostProcess.Kill();
|
||||
|
|
|
|||
Loading…
Reference in New Issue