From a0c4c0e079e687799d6a448fef2464e033628641 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 18 Mar 2025 13:50:17 +0100 Subject: [PATCH] Fix tests --- test/Identity.Test/Controllers/AccountsControllerTests.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/Identity.Test/Controllers/AccountsControllerTests.cs b/test/Identity.Test/Controllers/AccountsControllerTests.cs index 03db0a5904..c0fa51fb4f 100644 --- a/test/Identity.Test/Controllers/AccountsControllerTests.cs +++ b/test/Identity.Test/Controllers/AccountsControllerTests.cs @@ -3,6 +3,7 @@ using System.Text; using Bit.Core; using Bit.Core.Auth.Models.Api.Request.Accounts; using Bit.Core.Auth.Models.Business.Tokenables; +using Bit.Core.Auth.Repositories; using Bit.Core.Auth.Services; using Bit.Core.Auth.UserFeatures.Registration; using Bit.Core.Auth.UserFeatures.WebAuthnLogin; @@ -45,6 +46,7 @@ public class AccountsControllerTests : IDisposable private readonly IReferenceEventService _referenceEventService; private readonly IFeatureService _featureService; private readonly IDataProtectorTokenFactory _registrationEmailVerificationTokenDataFactory; + private readonly IOpaqueKeyExchangeCredentialRepository _opaqueKeyExchangeCredentialRepository; private readonly GlobalSettings _globalSettings; @@ -61,6 +63,7 @@ public class AccountsControllerTests : IDisposable _referenceEventService = Substitute.For(); _featureService = Substitute.For(); _registrationEmailVerificationTokenDataFactory = Substitute.For>(); + _opaqueKeyExchangeCredentialRepository = Substitute.For(); _globalSettings = Substitute.For(); _sut = new AccountsController( @@ -75,6 +78,7 @@ public class AccountsControllerTests : IDisposable _referenceEventService, _featureService, _registrationEmailVerificationTokenDataFactory, + _opaqueKeyExchangeCredentialRepository, _globalSettings ); }