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:
authorManish Sinha <manish.sinha@xamarin.com>2015-10-08 20:01:09 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-10-08 20:01:09 +0300
commit1b2a488032298c6e7102a7cf3861ae3bda2d151f (patch)
tree1e3b2b3ae8e6da8301ff3fad099dc623c99f5508 /main/tests
parent08e55c2d0e4fa2a9eadbc2c2ed8d316c1909592f (diff)
parent3ea9b4c4965525d7382a7caa708e8e654dd04666 (diff)
Merge pull request #971 from mono/fix_test_profile_location
[UITest] Update custom user profile env var
Diffstat (limited to 'main/tests')
-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);