diff --git a/tests/PowderCoating.UnitTests/QuoteApprovalControllerTests.cs b/tests/PowderCoating.UnitTests/QuoteApprovalControllerTests.cs index e26b790..c78e418 100644 --- a/tests/PowderCoating.UnitTests/QuoteApprovalControllerTests.cs +++ b/tests/PowderCoating.UnitTests/QuoteApprovalControllerTests.cs @@ -10,6 +10,7 @@ using PowderCoating.Application.Interfaces; using PowderCoating.Core.Entities; using PowderCoating.Core.Enums; using PowderCoating.Infrastructure.Data; +using PowderCoating.Infrastructure.Repositories; using PowderCoating.Web.Controllers; using PowderCoating.Web.Hubs; using PowderCoating.Web.ViewModels; @@ -319,7 +320,7 @@ public class QuoteApprovalControllerTests hubContext.SetupGet(x => x.Clients).Returns(hubClients.Object); var controller = new QuoteApprovalController( - context, + new UnitOfWork(context), notifications.Object, inApp.Object, Mock.Of(),