1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 17:12:49 -05:00

merge branch 'master' into 'encrypted-string-perf'

This commit is contained in:
Justin Baur
2022-10-07 09:53:33 -04:00
parent e0b1f9544b
commit a20e127c9c
149 changed files with 9934 additions and 394 deletions

View File

@ -30,6 +30,7 @@ public class AccountsControllerTests : IDisposable
private readonly ISendRepository _sendRepository;
private readonly ISendService _sendService;
private readonly IProviderUserRepository _providerUserRepository;
private readonly ICaptchaValidationService _captchaValidationService;
public AccountsControllerTests()
{
@ -44,6 +45,7 @@ public class AccountsControllerTests : IDisposable
_globalSettings = new GlobalSettings();
_sendRepository = Substitute.For<ISendRepository>();
_sendService = Substitute.For<ISendService>();
_captchaValidationService = Substitute.For<ICaptchaValidationService>();
_sut = new AccountsController(
_globalSettings,
_cipherRepository,
@ -55,7 +57,8 @@ public class AccountsControllerTests : IDisposable
_userRepository,
_userService,
_sendRepository,
_sendService
_sendService,
_captchaValidationService
);
}