From 2e2cbccbdd53efdbfbdc6ad8dfec2fb5496a998f Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Wed, 28 Jun 2017 12:59:24 -0700 Subject: [PATCH] Fix tests --- .../AuthenticationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/AuthenticationTests.cs b/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/AuthenticationTests.cs index bda1048f9c..ebb092b746 100644 --- a/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/AuthenticationTests.cs +++ b/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/AuthenticationTests.cs @@ -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);