FIxing issues

This commit is contained in:
2025-03-28 22:32:24 +01:00
parent 366962abfa
commit a648a2ea77
5 changed files with 10 additions and 9 deletions

View File

@@ -33,7 +33,7 @@ public class RoleController_Tests
{
IConfiguration configuration = TestUtils.CreateConfiguration();
_roleServiceMock = new Mock<IRoleService>();
_roleController = new RoleController(configuration, _roleServiceMock?.Object);
_roleController = new RoleController(configuration, _roleServiceMock.Object);
}
[TestMethod]