This commit is contained in:
John Luo 2016-06-15 10:57:57 -07:00
parent d6c8dae3f0
commit 412d125c95
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ namespace Microsoft.AspNetCore.Builder
private string BuildResponseBody(int httpStatusCode)
{
// Note the 500 spaces are to work around an IE 'feature'
string internetExplorerWorkaround = new string(' ', 500);
var internetExplorerWorkaround = new string(' ', 500);
var reasonPhrase = ReasonPhrases.GetReasonPhrase(httpStatusCode);

View File

@ -1,10 +1,10 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNetCore.WebUtilities;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNetCore.WebUtilities;
using Xunit;
namespace Microsoft.AspNetCore.Diagnostics.FunctionalTests