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