Skip to content

Commit 7662db1

Browse files
authored
update azure-core auth envvars (#34535)
1 parent df25a4c commit 7662db1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/core/azure-core/tests/perf_tests/_test_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ def __init__(self, arguments):
5959
self.account_key = self.get_from_env("AZURE_STORAGE_ACCOUNT_KEY")
6060
async_transport_types = {"aiohttp": AioHttpTransport, "requests": AsyncioRequestsTransport}
6161
sync_transport_types = {"requests": RequestsTransport}
62-
self.tenant_id = os.environ["CORE_TENANT_ID"]
63-
self.client_id = os.environ["CORE_CLIENT_ID"]
64-
self.client_secret = os.environ["CORE_CLIENT_SECRET"]
62+
self.tenant_id = os.environ["AZURE-CORE_TENANT_ID"]
63+
self.client_id = os.environ["AZURE-CORE_CLIENT_ID"]
64+
self.client_secret = os.environ["AZURE-CORE_CLIENT_SECRET"]
6565
self.storage_scope = "https://storage.azure.com/.default"
6666

6767
# defaults transports

0 commit comments

Comments
 (0)