diff --git a/test/TestSites/StartupNtlmAuthentication.cs b/test/TestSites/StartupNtlmAuthentication.cs index b4e150226d..29098ca702 100644 --- a/test/TestSites/StartupNtlmAuthentication.cs +++ b/test/TestSites/StartupNtlmAuthentication.cs @@ -52,13 +52,13 @@ namespace TestSites } else { - return context.ChallengeAsync(); + return context.ChallengeAsync(IISDefaults.AuthenticationScheme); } } if (context.Request.Path.Equals("/Forbidden")) { - return context.ForbidAsync(); + return context.ForbidAsync(IISDefaults.AuthenticationScheme); } if (context.Request.Path.Equals("/RestrictedNTLM"))