[master] Update dependencies from dotnet/coreclr (dotnet/corefx#41023)
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Fri, 13 Sep 2019 10:15:01 +0000 (10:15 +0000)
committerGitHub <noreply@github.com>
Fri, 13 Sep 2019 10:15:01 +0000 (10:15 +0000)
* Update dependencies from https://github.com/dotnet/coreclr build 20190910.9

- Microsoft.NET.Sdk.IL - 5.0.0-alpha1.19460.9
- Microsoft.NETCore.ILAsm - 5.0.0-alpha1.19460.9
- Microsoft.NETCore.Runtime.CoreCLR - 5.0.0-alpha1.19460.9

* Update dependencies from https://github.com/dotnet/coreclr build 20190911.7

- Microsoft.NET.Sdk.IL - 5.0.0-alpha1.19461.7
- Microsoft.NETCore.ILAsm - 5.0.0-alpha1.19461.7
- Microsoft.NETCore.Runtime.CoreCLR - 5.0.0-alpha1.19461.7

* Update StringComparerTests.netcoreapp.cs

Commit migrated from https://github.com/dotnet/corefx/commit/fdb13cc7ee134a17fb36a038b57795b7e2225274

src/libraries/System.Runtime/tests/System/StringComparerTests.netcoreapp.cs

index 6955172..a31986c 100644 (file)
@@ -12,7 +12,7 @@ namespace System.Tests
         [Fact]
         public void CreateCultureOptions_InvalidArguments_Throws()
         {
-            Assert.Throws<ArgumentException>(() => StringComparer.Create(null, CompareOptions.None));
+            Assert.Throws<ArgumentNullException>(() => StringComparer.Create(null, CompareOptions.None));
         }
 
         [Fact]