We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12a7807 commit 50185beCopy full SHA for 50185be
sdk/keyvault/Azure.Security.KeyVault.Keys/tests/KeyClientLiveTests.SecureKeyRelease.cs
@@ -58,16 +58,6 @@ public async Task ReleaseUpdatedKey()
58
KeyVaultKey key = await Client.CreateRsaKeyAsync(options);
59
RegisterForCleanup(key.Name);
60
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
-
71
KeyProperties keyProperties = new(key.Id)
72
{
73
Exportable = true,
0 commit comments