Fixes build in unit tests with ctor for service context

This commit is contained in:
Shannon
2014-05-09 13:28:03 +10:00
parent b02f7e0d3a
commit e0a0216b2d

View File

@@ -55,7 +55,8 @@ namespace Umbraco.Tests
new Mock<IUserService>().Object,
new Mock<ISectionService>().Object,
new Mock<IApplicationTreeService>().Object,
new Mock<ITagService>().Object);
new Mock<ITagService>().Object,
new Mock<INotificationService>().Object);
Assert.Pass();
}
@@ -99,7 +100,8 @@ namespace Umbraco.Tests
new Mock<IUserService>().Object,
new Mock<ISectionService>().Object,
new Mock<IApplicationTreeService>().Object,
new Mock<ITagService>().Object),
new Mock<ITagService>().Object,
new Mock<INotificationService>().Object),
CacheHelper.CreateDisabledCacheHelper());
Assert.Pass();