Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Shaw <sshaw@decriptor.com>2015-06-26 01:19:23 +0300
committerStephen Shaw <sshaw@decriptor.com>2015-06-26 01:19:23 +0300
commit3ea9b4c4965525d7382a7caa708e8e654dd04666 (patch)
tree203e9f0e89913216da6f3ecd117c3bbfbd24aefa /main/tests/UserInterfaceTests/TestService.cs
parente81288cfa9ec5f8deb36240f69a40e9956a6a674 (diff)
[UITest] Update custom user profile env var
MONODEVELOP_PROFILE is what is expected. main/src/core/MonoDevelop.Core/MonoDevelop.Core/UserProfile.cs#L32
Diffstat (limited to 'main/tests/UserInterfaceTests/TestService.cs')
-rw-r--r--main/tests/UserInterfaceTests/TestService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/tests/UserInterfaceTests/TestService.cs b/main/tests/UserInterfaceTests/TestService.cs
index ba24222dee..8678ce1dc5 100644
--- a/main/tests/UserInterfaceTests/TestService.cs
+++ b/main/tests/UserInterfaceTests/TestService.cs
@@ -27,6 +27,7 @@
using System;
using MonoDevelop.Components.AutoTest;
using System.Collections.Generic;
+using MonoDevelop.Core;
namespace UserInterfaceTests
{
@@ -41,7 +42,7 @@ namespace UserInterfaceTests
//TODO: support for testing the installed app
Session.StartApplication (file: monoDevelopBinPath, environment: new Dictionary<string,string> {
- { "MONODEVELOP_TEST_PROFILE", profilePath ?? Util.CreateTmpDir ("profile") }
+ { "MONODEVELOP_PROFILE", profilePath ?? Util.CreateTmpDir ("profile") }
});
Session.SetGlobalValue ("MonoDevelop.Core.Instrumentation.InstrumentationService.Enabled", true);