diff --git a/test/ServerComparison.TestSites/StartupNtlmAuthentication.cs b/test/ServerComparison.TestSites/StartupNtlmAuthentication.cs index 3b28151aac..c4e837db58 100644 --- a/test/ServerComparison.TestSites/StartupNtlmAuthentication.cs +++ b/test/ServerComparison.TestSites/StartupNtlmAuthentication.cs @@ -46,13 +46,13 @@ namespace ServerComparison.TestSites } else { - return context.ChallengeAsync(); + return context.ChallengeAsync("Windows"); } } if (context.Request.Path.Equals("/Forbidden")) { - return context.ForbidAsync(); + return context.ForbidAsync("Windows"); } return context.Response.WriteAsync("Hello World");