This commit is contained in:
Pavel Krymets 2015-11-24 11:09:01 -08:00
parent cc384ff272
commit aaea8bdf05
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ namespace Microsoft.AspNet.IISPlatformHandler
{
var auth = (IHttpAuthenticationFeature)context.Features[typeof(IHttpAuthenticationFeature)];
Assert.NotNull(auth);
Assert.IsAssignableFrom<AuthenticationHandler>(auth.Handler);
Assert.Equal("Microsoft.AspNet.IISPlatformHandler.AuthenticationHandler", auth.Handler.GetType().FullName);
assertsExecuted = true;
return Task.FromResult(0);
});