Merge branch 'temp-u4-10795' of https://github.com/umbraco/Umbraco-CMS into temp-u4-10795

This commit is contained in:
Stephan
2018-02-13 15:35:57 +01:00
3 changed files with 5 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ using Umbraco.Core.Services;
namespace Umbraco.Core.Auditing
{
internal class AuditEventHandler : ApplicationEventHandler
public sealed class AuditEventHandler : ApplicationEventHandler
{
private IAuditService _auditServiceInstance;
private IUserService _userServiceInstance;

View File

@@ -271,7 +271,7 @@ AnotherContentFinder
public void Resolves_Assigned_Mappers()
{
var foundTypes1 = _manager.ResolveAssignedMapperTypes();
Assert.AreEqual(30, foundTypes1.Count());
Assert.AreEqual(31, foundTypes1.Count());
}
[Test]

View File

@@ -79,8 +79,8 @@ namespace Umbraco.Tests.Plugins
var originalTypesFound = TypeFinderOriginal.FindClassesOfType<IApplicationStartupHandler>(_assemblies);
Assert.AreEqual(originalTypesFound.Count(), typesFound.Count());
Assert.AreEqual(9, typesFound.Count());
Assert.AreEqual(9, originalTypesFound.Count());
Assert.AreEqual(10, typesFound.Count());
Assert.AreEqual(10, originalTypesFound.Count());
}
[Test]
@@ -632,4 +632,4 @@ namespace Umbraco.Tests.Plugins
}
}
}