* Make StringComparer.Create throw ArgumentNullException
Throws proper exception.
* Update CoreFX.issues.rsp
Commit migrated from https://github.com/dotnet/coreclr/commit/
69ff008fde9a23996029c4fa25b6f4fba4d815cf
# Test failure: https://github.com/dotnet/corefx/issues/39223
-nomethod System.ComponentModel.TypeConverterTests.FontConverterTest.TestConvertFrom
+# Test failure: https://github.com/dotnet/coreclr/pull/26570
+-nomethod System.Tests.StringComparerTests.CreateCultureOptions_InvalidArguments_Throws
+
# corefx tests need to be updated for changes to GetHashCode
-nomethod System.Numerics.Tests.GenericVectorTests.GetHashCodeInt16
-nomethod System.Numerics.Tests.GenericVectorTests.GetHashCodeInt32
{
if (culture == null)
{
- throw new ArgumentException(nameof(culture));
+ throw new ArgumentNullException(nameof(culture));
}
return new CultureAwareComparer(culture, options);