diff --git a/test/Core.Test/Services/Fido2AuthenticatorGetAssertionTests.cs b/test/Core.Test/Services/Fido2AuthenticatorGetAssertionTests.cs index 81e6d48b8..e560d2168 100644 --- a/test/Core.Test/Services/Fido2AuthenticatorGetAssertionTests.cs +++ b/test/Core.Test/Services/Fido2AuthenticatorGetAssertionTests.cs @@ -291,7 +291,7 @@ namespace Bit.Core.Test.Services [Theory] [InlineCustomAutoData(new[] { typeof(SutProviderCustomization) })] // Spec: Increment the credential associated signature counter - public async Task GetAssertionAsync_ReturnsAssertion(SutProvider sutProvider, Fido2AuthenticatorGetAssertionParams aParams, Cipher encryptedCipher) { + public async Task GetAssertionAsync_ReturnsAssertion(SutProvider sutProvider, Fido2AuthenticatorGetAssertionParams aParams) { // Common Arrange var cipherView = CreateCipherView(null, "bitwarden.com", true); aParams.RpId = cipherView.Login.MainFido2Credential.RpId; @@ -336,7 +336,7 @@ namespace Bit.Core.Test.Services [Theory] [InlineCustomAutoData(new[] { typeof(SutProviderCustomization) })] // Spec: Increment the credential associated signature counter - public async Task GetAssertionAsync_ThrowsUnknownError_SaveFails(SutProvider sutProvider, Fido2AuthenticatorGetAssertionParams aParams, Cipher encryptedCipher) { + public async Task GetAssertionAsync_ThrowsUnknownError_SaveFails(SutProvider sutProvider, Fido2AuthenticatorGetAssertionParams aParams) { // Common Arrange var cipherView = CreateCipherView(null, "bitwarden.com", true); aParams.RpId = cipherView.Login.MainFido2Credential.RpId;