Skip to content

Commit

Permalink
Fix typo in TestEnvironment variable SYSTEM_ACCESSTOKEN (#44933)
Browse files Browse the repository at this point in the history
  • Loading branch information
schaabs authored Jul 10, 2024
1 parent 4f7020b commit 079a387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/core/Azure.Core.TestFramework/src/TestEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public virtual TokenCredential Credential
else
{
var clientSecret = GetOptionalVariable("CLIENT_SECRET");
var systemAccessToken = GetOptionalVariable("SYSTEM_ACCESSOTOKEN");
var systemAccessToken = GetOptionalVariable("SYSTEM_ACCESSTOKEN");
if (!string.IsNullOrWhiteSpace(clientSecret))
{
// If the recording is null but we are in Record Mode this means the Credential is being used
Expand Down

0 comments on commit 079a387

Please sign in to comment.