From 8c1bf38211985b09b328d707529e32af564abe74 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Thu, 11 Sep 2014 16:36:54 -0700 Subject: [PATCH] Reacting to a change in the environment variable from ENV -> KRE_ENV --- test/E2ETests/DeploymentUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/DeploymentUtility.cs b/test/E2ETests/DeploymentUtility.cs index 4d643d709c..8e93a6e7d1 100644 --- a/test/E2ETests/DeploymentUtility.cs +++ b/test/E2ETests/DeploymentUtility.cs @@ -66,7 +66,7 @@ namespace E2ETests if (!string.IsNullOrWhiteSpace(startParameters.EnvironmentName)) { //To choose an environment based Startup - Environment.SetEnvironmentVariable("ENV", startParameters.EnvironmentName); + Environment.SetEnvironmentVariable("KRE_ENV", startParameters.EnvironmentName); } Process hostProcess = null;