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/TestConstants.cs')
-rw-r--r--src/Http/Routing/test/UnitTests/TestConstants.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/Http/Routing/test/UnitTests/TestConstants.cs b/src/Http/Routing/test/UnitTests/TestConstants.cs
index 6a09494aa5..73e3f5ba47 100644
--- a/src/Http/Routing/test/UnitTests/TestConstants.cs
+++ b/src/Http/Routing/test/UnitTests/TestConstants.cs
@@ -4,10 +4,9 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
-namespace Microsoft.AspNetCore.Routing
+namespace Microsoft.AspNetCore.Routing;
+
+public static class TestConstants
{
- public static class TestConstants
- {
- internal static readonly RequestDelegate EmptyRequestDelegate = (context) => Task.CompletedTask;
- }
+ internal static readonly RequestDelegate EmptyRequestDelegate = (context) => Task.CompletedTask;
}