aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web.Tests/UserController.Tests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Web/DevHive.Web.Tests/UserController.Tests.cs')
-rw-r--r--src/Web/DevHive.Web.Tests/UserController.Tests.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Web/DevHive.Web.Tests/UserController.Tests.cs b/src/Web/DevHive.Web.Tests/UserController.Tests.cs
index e12738e..3dfcfa3 100644
--- a/src/Web/DevHive.Web.Tests/UserController.Tests.cs
+++ b/src/Web/DevHive.Web.Tests/UserController.Tests.cs
@@ -23,9 +23,9 @@ namespace DevHive.Web.Tests
[SetUp]
public void SetUp()
{
- this.UserServiceMock = new Mock<IUserService>();
- this.MapperMock = new Mock<IMapper>();
- this.UserController = new UserController(this.UserServiceMock.Object, this.MapperMock.Object);
+ this.UserServiceMock = new();
+ this.MapperMock = new();
+ this.UserController = new(this.UserServiceMock.Object, this.MapperMock.Object);
}
#region Create