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
path: root/main
diff options
context:
space:
mode:
authorSandy Armstrong <sandy@xamarin.com>2019-09-19 17:01:59 +0300
committerSandy Armstrong <sandy@xamarin.com>2019-09-19 17:01:59 +0300
commit25d205c6cb92ee440c9b6eba4506ae36c64861c6 (patch)
tree959fd54753c2cc64685178710e77a64d17427832 /main
parente17fa7f74f0d61b260b440aac9d407065a8e8412 (diff)
StressTest: Default UseNewEditor to false
This was getting correctly set in `RunTestScenario`, but that method is run after the IDE is already launched, and thus has no effect on the environment. So this isn't a real fix to make that work, but it should unblock the leak tests as they are currently run.
Diffstat (limited to 'main')
-rw-r--r--main/tests/StressTest/UserInterfaceTests/Properties.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/StressTest/UserInterfaceTests/Properties.cs b/main/tests/StressTest/UserInterfaceTests/Properties.cs
index 1a8e7fb1db..580a61f1b8 100644
--- a/main/tests/StressTest/UserInterfaceTests/Properties.cs
+++ b/main/tests/StressTest/UserInterfaceTests/Properties.cs
@@ -5,6 +5,6 @@ namespace MonoDevelop.StressTest
{
public static class Properties
{
- public static bool UseNewEditor { get; set; } = true;
+ public static bool UseNewEditor { get; set; } = false;
}
}