1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-19 18:38:03 -05:00

Fix build of integration tests

This commit is contained in:
Bernd Schoolmann 2025-06-19 16:25:04 +02:00
parent 91d68f1481
commit 129e29150f
No known key found for this signature in database

View File

@ -404,7 +404,7 @@ public class AccountsKeyManagementControllerTests : IClassFixture<ApiApplication
};
request.AccountKeys.SignatureKeyPair = new SignatureKeyPairRequestModel
{
SignatureAlgorithm = SignatureAlgorithm.Ed25519,
SignatureAlgorithm = "ed25519",
WrappedSigningKey = _mockEncryptedType7String,
VerifyingKey = "verifyingKey",
};
@ -494,7 +494,7 @@ public class AccountsKeyManagementControllerTests : IClassFixture<ApiApplication
};
request.AccountKeys.SignatureKeyPair = new SignatureKeyPairRequestModel
{
SignatureAlgorithm = SignatureAlgorithm.Ed25519,
SignatureAlgorithm = "ed25519",
WrappedSigningKey = _mockEncryptedType7String,
VerifyingKey = "verifyingKey",
};