From 5ab63adf2e7db7008d1e4fcc0be04b51650a6f1b Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Fri, 7 Jul 2017 12:16:20 -0700 Subject: [PATCH] Specify scheme for tests --- test/ServerComparison.TestSites/StartupNtlmAuthentication.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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");