mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-19 20:48:15 +08:00
+semver: upgrade to net5.0 (#1390)
* breaking upgrade base build image to net5.0 * add make and build tools to image * fix code broken after net5.0 upgrade * fix warnings * fix tests and line endings * upgrade dotnet test and coverages packages * update circle build image * removed rafty and updated more packages * bring back develop * rename authorisation to authorization
This commit is contained in:
@ -452,7 +452,7 @@
|
||||
foreach (var header in _mappedRequest.Data.Headers)
|
||||
{
|
||||
var inputHeader = _inputHeaders.First(h => h.Key == header.Key);
|
||||
inputHeader.ShouldNotBeNull();
|
||||
inputHeader.ShouldNotBe(default(KeyValuePair<string, StringValues>));
|
||||
inputHeader.Value.Count().ShouldBe(header.Value.Count());
|
||||
foreach (var inputHeaderValue in inputHeader.Value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user