Merge pull request #1152 from aspnet/FixTests

Remove call to Normlize() for now
This commit is contained in:
Hao Kung 2017-03-30 11:11:17 -07:00 committed by GitHub
commit 5894b58e1a
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Identity
{
return null;
}
return key.Normalize().ToUpperInvariant();
return key.ToUpperInvariant();
}
}
}
}