Fixing an invalid 'And' condition while checking for process exited already

This commit is contained in:
Praburaj 2014-06-11 13:31:55 -07:00
parent 6b1a61f208
commit 1ca9e25e54
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ namespace E2ETests
}
finally
{
if (hostProcess != null & !hostProcess.HasExited)
if (hostProcess != null && !hostProcess.HasExited)
{
//Shutdown the host process
hostProcess.Kill();