From 136b9c2a4e7f3c8d0f35d906c22cd8fffb49f29b Mon Sep 17 00:00:00 2001 From: Matthew Metcalf Date: Wed, 5 Aug 2026 09:15:33 -0700 Subject: [PATCH] Update test utility to remove default resource group Remove default resource group value for tests. --- .../cli/command_modules/appconfig/tests/latest/_test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/_test_utils.py b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/_test_utils.py index d47e54bdb12..01fb0f477b4 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/_test_utils.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/_test_utils.py @@ -33,7 +33,7 @@ def get_test_resource_group(): # is disabled. The recording principal must already hold "App Configuration Data Owner" at a # scope covering the store, so tests target a fixed resource group with that standing role # instead of an ephemeral @ResourceGroupPreparer group. Override via AZURE_CLI_APPCONFIG_TEST_RG. - return os.environ.get("AZURE_CLI_APPCONFIG_TEST_RG", "mametcal-python") + return os.environ.get("AZURE_CLI_APPCONFIG_TEST_RG") def _case_insensitive_query_matcher(r1, r2):