Fix tests

This commit is contained in:
Hao Kung 2017-06-28 12:59:24 -07:00
parent 779cfd265a
commit 2e2cbccbdd
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
Assert.False(httpContext.User.Identity.IsAuthenticated);
var authResults = await httpContext.AuthenticateAsync(HttpSysDefaults.AuthenticationScheme);
Assert.False(authResults.Succeeded);
Assert.True(authResults.Nothing);
Assert.True(authResults.None);
}))
{
var response = await SendRequestAsync(address);