This commit is contained in:
George Arama 2024-04-18 16:24:01 -07:00
parent 23ebba0f7b
commit da10e8d6b0
2 changed files with 5 additions and 3 deletions

View File

@ -28,7 +28,9 @@ TEST_F(KeyVaultKeyClient, GetSingleKey)
EXPECT_EQ(key.GetKeyType(), KeyVaultKeyType::Ec);
}
TEST_F(KeyVaultKeyClient, GetPropertiesOfKeysAllPages_LIVEONLY_) // truncated json in the recording body
TEST_F(
KeyVaultKeyClient,
GetPropertiesOfKeysAllPages_LIVEONLY_) // truncated json in the recording body
{
auto const keyName = GetTestName();
auto const& client = GetClientForTest(keyName);

View File

@ -184,13 +184,13 @@ TEST_F(KeyVaultSecretClientTest, BackupRestore)
{
auto purgedResponse = client.PurgeDeletedSecret(secretName);
CheckValidResponse(purgedResponse, Azure::Core::Http::HttpStatusCode::NoContent);
//TestSleep(4min);
// TestSleep(4min);
}
{
auto restore = client.RestoreSecretBackup(backupData);
CheckValidResponse(restore);
auto restored = restore.Value;
EXPECT_TRUE(restored.Id.length()>0);
EXPECT_TRUE(restored.Id.length() > 0);
}
}