diff --git a/test/Core.Test/Services/UserServiceTests.cs b/test/Core.Test/Services/UserServiceTests.cs index 9fd0512ee4..02bb9b3264 100644 --- a/test/Core.Test/Services/UserServiceTests.cs +++ b/test/Core.Test/Services/UserServiceTests.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using Bit.Core.Models.Table; using Bit.Core.Repositories; @@ -37,6 +37,7 @@ namespace Bit.Core.Test.Services private readonly IApplicationCacheService _applicationCacheService; private readonly IDataProtectionProvider _dataProtectionProvider; private readonly IPaymentService _paymentService; + private readonly IPolicyRepository _policyRepository; private readonly CurrentContext _currentContext; private readonly GlobalSettings _globalSettings; @@ -63,6 +64,7 @@ namespace Bit.Core.Test.Services _applicationCacheService = Substitute.For(); _dataProtectionProvider = Substitute.For(); _paymentService = Substitute.For(); + _policyRepository = Substitute.For(); _currentContext = new CurrentContext(); _globalSettings = new GlobalSettings(); @@ -88,6 +90,7 @@ namespace Bit.Core.Test.Services _applicationCacheService, _dataProtectionProvider, _paymentService, + _policyRepository, _currentContext, _globalSettings );