Previous commit added a IApplicationStartupHandler which broke the count in this unit test

This commit is contained in:
Sebastiaan Janssen
2015-03-01 14:09:35 +01:00
parent 6dd63e8a01
commit 9b254f8bf9

View File

@@ -82,8 +82,8 @@ namespace Umbraco.Tests.Plugins
var originalTypesFound = TypeFinderOriginal.FindClassesOfType<IApplicationStartupHandler>(_assemblies);
Assert.AreEqual(originalTypesFound.Count(), typesFound.Count());
Assert.AreEqual(5, typesFound.Count());
Assert.AreEqual(5, originalTypesFound.Count());
Assert.AreEqual(6, typesFound.Count());
Assert.AreEqual(6, originalTypesFound.Count());
}
[Test]