Skip to content

Commit 11f1501

Browse files
Use upper-case values for test agent values (Azure#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.
1 parent 69312b2 commit 11f1501

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/communication/communication-phone-numbers/phone-numbers-livetest-matrix.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"ubuntu-20.04": {
1313
"OSVmImage": "MMSUbuntu20.04",
1414
"Pool": "azsdk-pool-mms-ubuntu-2004-general",
15-
"AZURE_TEST_AGENT": "ubuntu_2004_node14",
15+
"AZURE_TEST_AGENT": "UBUNTU_2004_NODE14",
1616
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false"
1717
},
1818
"macOS-10.15": {
@@ -38,7 +38,7 @@
3838
"TestType": "node",
3939
"TestResultsFiles": "**/test-results.xml",
4040
"PublishCodeCoverage": "true",
41-
"AZURE_TEST_AGENT": "windows_2019_node12",
41+
"AZURE_TEST_AGENT": "WINDOWS_2019_NODE12",
4242
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false"
4343
},
4444
"sample": {
@@ -49,7 +49,7 @@
4949
"browser": {
5050
"TestType": "browser",
5151
"TestResultsFiles": "**/test-results.browser.xml",
52-
"AZURE_TEST_AGENT": "windows_2019_browser",
52+
"AZURE_TEST_AGENT": "WINDOWS_2019_BROWSER",
5353
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "false"
5454
}
5555
},

0 commit comments

Comments
 (0)