Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
bgavrilMS committed Oct 29, 2024
1 parent 5f177c6 commit 5e6c30f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Microsoft.Identity.Web.DownstreamApi/DownstreamApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public Task<HttpResponseMessage> CallApiForAppAsync(
/// </summary>
/// <param name="optionsInstanceName">Named configuration.</param>
/// <param name="calledApiOptionsOverride">Delegate to override the configuration.</param>
private /* for tests */ DownstreamApiOptions MergeOptions(
internal /* for tests */ DownstreamApiOptions MergeOptions(
string? optionsInstanceName,
Action<DownstreamApiOptions>? calledApiOptionsOverride)
{
Expand All @@ -295,7 +295,7 @@ public Task<HttpResponseMessage> CallApiForAppAsync(
/// <param name="optionsInstanceName">Named configuration.</param>
/// <param name="calledApiOptionsOverride">Delegate to override the configuration.</param>
/// <param name="httpMethod">Http method overriding the configuration options.</param>
private DownstreamApiOptions MergeOptions(
internal /* for tests */ DownstreamApiOptions MergeOptions(
string? optionsInstanceName,
Action<DownstreamApiOptionsReadOnlyHttpMethod>? calledApiOptionsOverride, HttpMethod httpMethod)
{
Expand Down Expand Up @@ -415,7 +415,7 @@ private DownstreamApiOptions MergeOptions(
}
}

private async Task<HttpResponseMessage> CallApiInternalAsync(
internal /* for tests */ async Task<HttpResponseMessage> CallApiInternalAsync(
string? serviceName,
DownstreamApiOptions effectiveOptions,
bool appToken,
Expand Down

0 comments on commit 5e6c30f

Please sign in to comment.