From 2ae29287d15fb20ec85ac81ee6e86a8359604ed5 Mon Sep 17 00:00:00 2001 From: Yuchao Yan Date: Mon, 25 Mar 2024 10:13:44 +0800 Subject: [PATCH] Update conftest.py (#34906) --- sdk/purview/azure-purview-scanning/tests/conftest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sdk/purview/azure-purview-scanning/tests/conftest.py b/sdk/purview/azure-purview-scanning/tests/conftest.py index a2b67062c421..964abaec642b 100644 --- a/sdk/purview/azure-purview-scanning/tests/conftest.py +++ b/sdk/purview/azure-purview-scanning/tests/conftest.py @@ -41,10 +41,10 @@ @pytest.fixture(scope="session", autouse=True) def add_sanitizers(test_proxy): - subscription_id = os.environ.get("PURVIEWCATALOG_SUBSCRIPTION_ID", "00000000-0000-0000-0000-000000000000") - tenant_id = os.environ.get("PURVIEWCATALOG_TENANT_ID", "00000000-0000-0000-0000-000000000000") - client_id = os.environ.get("PURVIEWCATALOG_CLIENT_ID", "00000000-0000-0000-0000-000000000000") - client_secret = os.environ.get("PURVIEWCATALOG_CLIENT_SECRET", "00000000-0000-0000-0000-000000000000") + subscription_id = os.environ.get("PURVIEWSCANNING_SUBSCRIPTION_ID", "00000000-0000-0000-0000-000000000000") + tenant_id = os.environ.get("PURVIEWSCANNING_TENANT_ID", "00000000-0000-0000-0000-000000000000") + client_id = os.environ.get("PURVIEWSCANNING_CLIENT_ID", "00000000-0000-0000-0000-000000000000") + client_secret = os.environ.get("PURVIEWSCANNING_CLIENT_SECRET", "00000000-0000-0000-0000-000000000000") add_general_regex_sanitizer(regex=subscription_id, value="00000000-0000-0000-0000-000000000000") add_general_regex_sanitizer(regex=tenant_id, value="00000000-0000-0000-0000-000000000000") add_general_regex_sanitizer(regex=client_id, value="00000000-0000-0000-0000-000000000000")