Skip to content

Commit e42c42e

Browse files
committed
Update test/tools
1 parent 2e36592 commit e42c42e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/tools/WebListener/Controllers/ResponseController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public string Index()
4141
}
4242

4343
StringValues responsePhrase;
44-
if ( Request.Query.TryGetValue("responsephrase", out responsePhrase))
44+
if (Request.Query.TryGetValue("responsephrase", out responsePhrase))
4545
{
4646
Response.HttpContext.Features.Get<IHttpResponseFeature>().ReasonPhrase = responsePhrase.FirstOrDefault();
4747
}

test/tools/WebListener/DeflateFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace mvc.Controllers
1111
{
1212
internal sealed class DeflateFilter : ResultFilterAttribute
1313
{
14-
public override async Task OnResultExecutionAsync( ResultExecutingContext context, ResultExecutionDelegate next)
14+
public override async Task OnResultExecutionAsync(ResultExecutingContext context, ResultExecutionDelegate next)
1515
{
1616
var httpContext = context.HttpContext;
1717
using (var memoryStream = new MemoryStream())

test/tools/WebListener/GzipFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace mvc.Controllers
1111
{
1212
internal sealed class GzipFilter : ResultFilterAttribute
1313
{
14-
public override async Task OnResultExecutionAsync( ResultExecutingContext context, ResultExecutionDelegate next)
14+
public override async Task OnResultExecutionAsync(ResultExecutingContext context, ResultExecutionDelegate next)
1515
{
1616
var httpContext = context.HttpContext;
1717
using (var memoryStream = new MemoryStream())

0 commit comments

Comments
 (0)