From 1ca9e25e54d011917a8e0f58a8b6c0c10652fad5 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Wed, 11 Jun 2014 13:31:55 -0700 Subject: [PATCH] Fixing an invalid 'And' condition while checking for process exited already --- test/E2ETests/SmokeTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/SmokeTests.cs b/test/E2ETests/SmokeTests.cs index 91ddf4ac96..692947343a 100644 --- a/test/E2ETests/SmokeTests.cs +++ b/test/E2ETests/SmokeTests.cs @@ -106,7 +106,7 @@ namespace E2ETests } finally { - if (hostProcess != null & !hostProcess.HasExited) + if (hostProcess != null && !hostProcess.HasExited) { //Shutdown the host process hostProcess.Kill();