diff --git a/src/Umbraco.Core/Models/Identity/BackOfficeIdentityUser.cs b/src/Umbraco.Core/Models/Identity/BackOfficeIdentityUser.cs
index 302ccbcc54..b4d9bb2c8a 100644
--- a/src/Umbraco.Core/Models/Identity/BackOfficeIdentityUser.cs
+++ b/src/Umbraco.Core/Models/Identity/BackOfficeIdentityUser.cs
@@ -35,7 +35,6 @@ namespace Umbraco.Core.Models.Identity
private int[] _startContentIds;
private DateTime? _lastPasswordChangeDateUtc;
-
///
/// Used to construct a new instance without an identity
///
diff --git a/src/Umbraco.Core/Models/Identity/IdentityUser.cs b/src/Umbraco.Core/Models/Identity/IdentityUser.cs
index b8ed355c55..70f2cee9dd 100644
--- a/src/Umbraco.Core/Models/Identity/IdentityUser.cs
+++ b/src/Umbraco.Core/Models/Identity/IdentityUser.cs
@@ -18,10 +18,8 @@ namespace Umbraco.Core.Models.Identity
where TRole : IdentityUserRole
where TClaim : IdentityUserClaim
{
-
///
- /// Constructor
- ///
+ /// Initializes a new instance of the class.
///
public IdentityUser()
{
@@ -77,7 +75,6 @@ namespace Umbraco.Core.Models.Identity
///
/// DateTime in UTC when the password was last changed.
- ///
///
public virtual DateTime? LastPasswordChangeDateUtc { get; set; }
diff --git a/src/Umbraco.Core/Services/IFileService.cs b/src/Umbraco.Core/Services/IFileService.cs
index d77b2080ee..a61faa10c7 100644
--- a/src/Umbraco.Core/Services/IFileService.cs
+++ b/src/Umbraco.Core/Services/IFileService.cs
@@ -358,6 +358,5 @@ namespace Umbraco.Core.Services
/// The name of the snippet
/// The content of the partial view.
string GetPartialViewSnippetContent(string snippetName);
-
}
}
diff --git a/src/Umbraco.Tests/Testing/UmbracoTestBase.cs b/src/Umbraco.Tests/Testing/UmbracoTestBase.cs
index 99b6fc4f22..5cd884b4c6 100644
--- a/src/Umbraco.Tests/Testing/UmbracoTestBase.cs
+++ b/src/Umbraco.Tests/Testing/UmbracoTestBase.cs
@@ -181,6 +181,8 @@ namespace Umbraco.Tests.Testing
// imported from TestWithSettingsBase
// which was inherited by TestWithApplicationBase so pretty much used everywhere
Umbraco.Web.Composing.Current.UmbracoContextAccessor = new TestUmbracoContextAccessor();
+
+ // web
Container.Register(_ => Umbraco.Web.Composing.Current.UmbracoContextAccessor);
Container.RegisterSingleton();
Container.RegisterCollectionBuilder();
@@ -189,8 +191,7 @@ namespace Umbraco.Tests.Testing
}
protected virtual void ComposeWtf()
- {
-
+ {
// what else?
var runtimeStateMock = new Mock();
runtimeStateMock.Setup(x => x.Level).Returns(RuntimeLevel.Run);
@@ -336,8 +337,6 @@ namespace Umbraco.Tests.Testing
Container.RegisterCollectionBuilder();
Container.RegisterSingleton();
Container.RegisterSingleton();
-
-
}
#endregion