From 85c7b102b9a97044864fbf987d491e9a1d62f8ab Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Thu, 7 Jul 2016 16:22:55 +0200 Subject: [PATCH] Revert C#6 notation --- src/Umbraco.Tests/TestHelpers/BaseUmbracoApplicationTest.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Tests/TestHelpers/BaseUmbracoApplicationTest.cs b/src/Umbraco.Tests/TestHelpers/BaseUmbracoApplicationTest.cs index 2d6a75d025..4b84d7a0a3 100644 --- a/src/Umbraco.Tests/TestHelpers/BaseUmbracoApplicationTest.cs +++ b/src/Umbraco.Tests/TestHelpers/BaseUmbracoApplicationTest.cs @@ -121,7 +121,10 @@ namespace Umbraco.Tests.TestHelpers /// all of the assemblies. Inheritors can override this if plugin manager resetting is required, generally needs /// to be set to true if the SetupPluginManager has been overridden. /// - protected virtual bool PluginManagerResetRequired => false; + protected virtual bool PluginManagerResetRequired + { + get { return false; } + } /// /// Inheritors can resset the plugin manager if they choose to on teardown