From 11f15017c64578117093be136c654f9ce93d510e Mon Sep 17 00:00:00 2001 From: Daniel Ortega <96089426+danielortega-msft@users.noreply.github.com> Date: Fri, 18 Feb 2022 16:44:20 -0800 Subject: [PATCH] Use upper-case values for test agent values (#20465) When running within the ADO pipeline, the env variable keys are converted to upper-case, which causes issues when running in a case-sensitive OS. Using uppercase values prevents this issue. --- .../phone-numbers-livetest-matrix.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/communication/communication-phone-numbers/phone-numbers-livetest-matrix.json b/sdk/communication/communication-phone-numbers/phone-numbers-livetest-matrix.json index fb5b966c04c9..df0b6a910091 100644 --- a/sdk/communication/communication-phone-numbers/phone-numbers-livetest-matrix.json +++ b/sdk/communication/communication-phone-numbers/phone-numbers-livetest-matrix.json @@ -12,7 +12,7 @@ "ubuntu-20.04": { "OSVmImage": "MMSUbuntu20.04", "Pool": "azsdk-pool-mms-ubuntu-2004-general", - "AZURE_TEST_AGENT": "ubuntu_2004_node14", + "AZURE_TEST_AGENT": "UBUNTU_2004_NODE14", "SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false" }, "macOS-10.15": { @@ -38,7 +38,7 @@ "TestType": "node", "TestResultsFiles": "**/test-results.xml", "PublishCodeCoverage": "true", - "AZURE_TEST_AGENT": "windows_2019_node12", + "AZURE_TEST_AGENT": "WINDOWS_2019_NODE12", "SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false" }, "sample": { @@ -49,7 +49,7 @@ "browser": { "TestType": "browser", "TestResultsFiles": "**/test-results.browser.xml", - "AZURE_TEST_AGENT": "windows_2019_browser", + "AZURE_TEST_AGENT": "WINDOWS_2019_BROWSER", "SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false" } },