From 4f6474c4418400c2c387dce7ce91120e45494d00 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Wed, 1 Jan 2025 16:57:47 +0100 Subject: [PATCH] FIx tests --- test/Api.Test/Auth/Controllers/AccountsControllerTests.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs b/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs index 13c80f8563..b13b25bffe 100644 --- a/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs +++ b/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs @@ -46,6 +46,7 @@ public class AccountsControllerTests : IDisposable private readonly IPolicyService _policyService; private readonly ISetInitialMasterPasswordCommand _setInitialMasterPasswordCommand; private readonly IRotateUserKeyCommand _rotateUserKeyCommand; + private readonly IRotateUserAccountKeysCommand _rotateUserAccountKeysCommand; private readonly ITdeOffboardingPasswordCommand _tdeOffboardingPasswordCommand; private readonly IFeatureService _featureService; private readonly ISubscriberService _subscriberService; @@ -75,6 +76,7 @@ public class AccountsControllerTests : IDisposable _policyService = Substitute.For(); _setInitialMasterPasswordCommand = Substitute.For(); _rotateUserKeyCommand = Substitute.For(); + _rotateUserAccountKeysCommand = Substitute.For(); _tdeOffboardingPasswordCommand = Substitute.For(); _featureService = Substitute.For(); _subscriberService = Substitute.For(); @@ -103,6 +105,7 @@ public class AccountsControllerTests : IDisposable _setInitialMasterPasswordCommand, _tdeOffboardingPasswordCommand, _rotateUserKeyCommand, + _rotateUserAccountKeysCommand, _featureService, _subscriberService, _referenceEventService,