Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Http/Routing/test/UnitTests/Matching/SingleEntryAsciiJumpTableTest.cs')
-rw-r--r--src/Http/Routing/test/UnitTests/Matching/SingleEntryAsciiJumpTableTest.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Http/Routing/test/UnitTests/Matching/SingleEntryAsciiJumpTableTest.cs b/src/Http/Routing/test/UnitTests/Matching/SingleEntryAsciiJumpTableTest.cs
index b8ad193fa6..2bfea66a51 100644
--- a/src/Http/Routing/test/UnitTests/Matching/SingleEntryAsciiJumpTableTest.cs
+++ b/src/Http/Routing/test/UnitTests/Matching/SingleEntryAsciiJumpTableTest.cs
@@ -1,13 +1,12 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-namespace Microsoft.AspNetCore.Routing.Matching
+namespace Microsoft.AspNetCore.Routing.Matching;
+
+public class SingleEntryAsciiJumpTableTest : SingleEntryJumpTableTestBase
{
- public class SingleEntryAsciiJumpTableTest : SingleEntryJumpTableTestBase
+ private protected override JumpTable CreateJumpTable(int defaultDestination, int exitDestination, string text, int destination)
{
- private protected override JumpTable CreateJumpTable(int defaultDestination, int exitDestination, string text, int destination)
- {
- return new SingleEntryAsciiJumpTable(defaultDestination, exitDestination, text, destination);
- }
+ return new SingleEntryAsciiJumpTable(defaultDestination, exitDestination, text, destination);
}
}