Specify scheme for tests

This commit is contained in:
Hao Kung 2017-07-07 12:16:20 -07:00 committed by Hao Kung
parent cad389a75b
commit 5ab63adf2e
1 changed files with 2 additions and 2 deletions

View File

@ -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");