Skip to content

Commit 4601a26

Browse files
authored
Fix order in DFA matcher test (#5954)
1 parent de954ce commit 4601a26

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

src/Http/HttpAbstractions.sln

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server
9191
EndProject
9292
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.StaticFiles", "..\Middleware\StaticFiles\src\Microsoft.AspNetCore.StaticFiles.csproj", "{A0C7AE95-BBE7-4F75-9508-F5881C8A456D}"
9393
EndProject
94+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.IISIntegration", "..\Servers\IIS\src\Microsoft.AspNetCore.Server.IISIntegration\Microsoft.AspNetCore.Server.IISIntegration.csproj", "{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}"
95+
EndProject
9496
Global
9597
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9698
Debug|Any CPU = Debug|Any CPU
@@ -461,6 +463,18 @@ Global
461463
{A0C7AE95-BBE7-4F75-9508-F5881C8A456D}.Release|x64.Build.0 = Release|Any CPU
462464
{A0C7AE95-BBE7-4F75-9508-F5881C8A456D}.Release|x86.ActiveCfg = Release|Any CPU
463465
{A0C7AE95-BBE7-4F75-9508-F5881C8A456D}.Release|x86.Build.0 = Release|Any CPU
466+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
467+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Debug|Any CPU.Build.0 = Debug|Any CPU
468+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Debug|x64.ActiveCfg = Debug|Any CPU
469+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Debug|x64.Build.0 = Debug|Any CPU
470+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Debug|x86.ActiveCfg = Debug|Any CPU
471+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Debug|x86.Build.0 = Debug|Any CPU
472+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Release|Any CPU.ActiveCfg = Release|Any CPU
473+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Release|Any CPU.Build.0 = Release|Any CPU
474+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Release|x64.ActiveCfg = Release|Any CPU
475+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Release|x64.Build.0 = Release|Any CPU
476+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Release|x86.ActiveCfg = Release|Any CPU
477+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74}.Release|x86.Build.0 = Release|Any CPU
464478
EndGlobalSection
465479
GlobalSection(SolutionProperties) = preSolution
466480
HideSolutionNode = FALSE
@@ -498,6 +512,7 @@ Global
498512
{30BDD853-AF73-4D15-B4FB-621E7969B9C9} = {A4913006-307E-46FE-93BF-C39AC4AD70D7}
499513
{716CC743-D9FA-4EF6-8767-152A8E70C52A} = {793FFE24-138A-4C3D-81AB-18D625E36230}
500514
{A0C7AE95-BBE7-4F75-9508-F5881C8A456D} = {793FFE24-138A-4C3D-81AB-18D625E36230}
515+
{735DAFBA-8F07-4E68-BC46-A16E8A5A5F74} = {793FFE24-138A-4C3D-81AB-18D625E36230}
501516
EndGlobalSection
502517
GlobalSection(ExtensibilityGlobals) = postSolution
503518
SolutionGuid = {85B5E151-2E9D-419C-83DD-0DDCF446C83A}

src/Http/Routing/test/UnitTests/Matching/DfaMatcherTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
@@ -294,8 +294,8 @@ public async Task MatchAsync_MultipleCandidates_Logging()
294294
var endpointDataSource = new DefaultEndpointDataSource(new List<Endpoint>
295295
{
296296
CreateEndpoint("/One", 0),
297-
CreateEndpoint("/{p:int}", 0),
298-
CreateEndpoint("/x-{id}-y", 0),
297+
CreateEndpoint("/{p:int}", 1),
298+
CreateEndpoint("/x-{id}-y", 2),
299299
});
300300

301301
var sink = new TestSink();

0 commit comments

Comments
 (0)