Skip to content

Commit 50185be

Browse files
authored
Fix Key Vault live tests (Azure#30840)
1 parent 12a7807 commit 50185be

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

sdk/keyvault/Azure.Security.KeyVault.Keys/tests/KeyClientLiveTests.SecureKeyRelease.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,6 @@ public async Task ReleaseUpdatedKey()
5858
KeyVaultKey key = await Client.CreateRsaKeyAsync(options);
5959
RegisterForCleanup(key.Name);
6060

61-
// Managed HSM and Key Vault return different values by default.
62-
if (IsManagedHSM)
63-
{
64-
Assert.IsFalse(key.Properties.Exportable);
65-
}
66-
else
67-
{
68-
Assert.IsNull(key.Properties.Exportable);
69-
}
70-
7161
KeyProperties keyProperties = new(key.Id)
7262
{
7363
Exportable = true,

0 commit comments

Comments
 (0)