#287 Do not include an auth display name

This commit is contained in:
Chris R 2017-03-01 16:00:18 -08:00
Родитель 8d61026438
Коммит d103bdb1ba
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -117,7 +117,6 @@ namespace Microsoft.AspNetCore.Server.HttpSys
return new Dictionary<string, object>()
{
{ "AuthenticationScheme", authenticationScheme },
{ "DisplayName", "Windows:" + authenticationScheme },
};
}

Просмотреть файл

@ -192,7 +192,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
Assert.Equal(1, resultList.Count());
var result = resultList.First();
Assert.Equal(authType.ToString(), result.AuthenticationScheme);
Assert.Equal("Windows:" + authType.ToString(), result.DisplayName);
Assert.Null(result.DisplayName);
}
return Task.FromResult(0);