Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DuendeSoftware/foss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e3500b764c9fb00d7cc1c204cbc094b285e84417
Choose a base ref
..
head repository: DuendeSoftware/foss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 23cd3ca597aff69e9e06456ba19d93808ba9c6ab
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +4 −4 identity-model/test/IdentityModel.Tests/HttpClientExtensions/CibaExtensionsTests.cs
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ public async Task Http_request_should_have_correct_format()
};

request.Headers.Add("custom", "custom");
request.Properties.Add("custom", "custom");
request.GetProperties().Add("custom", "custom");

var response = await client.RequestBackchannelAuthenticationAsync(request);

@@ -59,7 +59,7 @@ public async Task Http_request_should_have_correct_format()
headers.Count().Should().Be(3);
headers.Should().Contain(h => h.Key == "custom" && h.Value.First() == "custom");

var properties = httpRequest.Properties;
var properties = httpRequest.GetProperties();
properties.Count.Should().Be(1);

var prop = properties.First();
@@ -133,7 +133,7 @@ public async Task Http_request_with_request_object_should_have_correct_format()
};

request.Headers.Add("custom", "custom");
request.Properties.Add("custom", "custom");
request.GetProperties().Add("custom", "custom");

var response = await client.RequestBackchannelAuthenticationAsync(request);

@@ -147,7 +147,7 @@ public async Task Http_request_with_request_object_should_have_correct_format()
headers.Count().Should().Be(3);
headers.Should().Contain(h => h.Key == "custom" && h.Value.First() == "custom");

var properties = httpRequest.Properties;
var properties = httpRequest.GetProperties();
properties.Count.Should().Be(1);

var prop = properties.First();