Skip to content

Commit

Permalink
Fix warnings (#3024)
Browse files Browse the repository at this point in the history
* Fix warnings

* Update tests/Microsoft.Identity.Web.Test.Common/Mocks/QueryStringParser.cs

Co-authored-by: Bogdan Gavril <bogavril@microsoft.com>

---------

Co-authored-by: Bogdan Gavril <bogavril@microsoft.com>
  • Loading branch information
jmprieur and bgavrilMS committed Sep 19, 2024
1 parent a153c32 commit ea0e0a7
Show file tree
Hide file tree
Showing 5 changed files with 606 additions and 602 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ public async Task<string> CreateAuthorizationHeaderAsync(
{
result = await _tokenAcquisition.GetAuthenticationResultForUserAsync(
scopes,
downstreamApiOptions?.AcquireTokenOptions.AuthenticationOptionsName,
downstreamApiOptions?.AcquireTokenOptions.Tenant,
downstreamApiOptions?.AcquireTokenOptions.UserFlow,
downstreamApiOptions?.AcquireTokenOptions?.AuthenticationOptionsName,
downstreamApiOptions?.AcquireTokenOptions?.Tenant,
downstreamApiOptions?.AcquireTokenOptions?.UserFlow,
claimsPrincipal,
CreateTokenAcquisitionOptionsFromApiOptions(downstreamApiOptions, cancellationToken)).ConfigureAwait(false);
return result.CreateAuthorizationHeader();
Expand Down
Loading

0 comments on commit ea0e0a7

Please sign in to comment.