fix testName (#5527)

* fix testName

* trigger
This commit is contained in:
George Arama 2024-04-12 15:57:13 -07:00 committed by GitHub
parent de2edfe2c8
commit 067d6acb3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -750,7 +750,7 @@ TEST_F(KeyVaultCertificateClientTest, GetDeletedCertificates)
TEST_F(KeyVaultCertificateClientTest, DownloadImportPkcs_LIVEONLY_)
{
auto testName = ::testing::UnitTest::GetInstance()->current_test_info()->name();
auto testName = GetTestName();
std::string const pkcs(testName);
std::string const importName(pkcs + "2");
@ -782,12 +782,11 @@ TEST_F(KeyVaultCertificateClientTest, DownloadImportPkcs_LIVEONLY_)
TEST_F(KeyVaultCertificateClientTest, DownloadImportPem_LIVEONLY_)
{
auto testName = ::testing::UnitTest::GetInstance()->current_test_info()->name();
auto testName = GetTestName();
std::string const pem(testName);
std::string const importName(pem + "2");
auto const& client = GetClientForTest(testName);
auto originalCertificate
= CreateCertificate(pem, client, m_defaultWait, "CN=xyz", CertificateContentType::Pem);