This commit is contained in:
George Arama 2024-04-30 10:20:07 -07:00 committed by GitHub
parent 6062e0855d
commit 73e70ea7bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,7 +83,17 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Secrets {
* @brief Define the test
*
*/
void Run(Azure::Core::Context const&) override { auto t = m_client->GetSecret(m_secretName); }
void Run(Azure::Core::Context const&) override
{
try
{
auto t = m_client->GetSecret(m_secretName);
}
catch (...)
{
// Do nothing
}
}
/**
* @brief Define the test options for the test.