fixes tests

This commit is contained in:
Shannon
2018-02-13 19:29:19 +11:00
parent caa3a3319f
commit b42f75df17
2 changed files with 4 additions and 4 deletions

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
}
}
}