Fix test
This commit is contained in:
parent
cc384ff272
commit
aaea8bdf05
|
|
@ -124,7 +124,7 @@ namespace Microsoft.AspNet.IISPlatformHandler
|
||||||
{
|
{
|
||||||
var auth = (IHttpAuthenticationFeature)context.Features[typeof(IHttpAuthenticationFeature)];
|
var auth = (IHttpAuthenticationFeature)context.Features[typeof(IHttpAuthenticationFeature)];
|
||||||
Assert.NotNull(auth);
|
Assert.NotNull(auth);
|
||||||
Assert.IsAssignableFrom<AuthenticationHandler>(auth.Handler);
|
Assert.Equal("Microsoft.AspNet.IISPlatformHandler.AuthenticationHandler", auth.Handler.GetType().FullName);
|
||||||
assertsExecuted = true;
|
assertsExecuted = true;
|
||||||
return Task.FromResult(0);
|
return Task.FromResult(0);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue