summaryrefslogtreecommitdiff
path: root/tests/src/CoreMangLib
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-02-22 12:35:27 -0800
committerwtgodbe <wigodbe@microsoft.com>2017-03-13 15:30:19 -0700
commit5fc26e331934ea3e920103de8cb4161d2ff0ba6e (patch)
tree13a59e3bea093605bb509ac719002430140bc3dc /tests/src/CoreMangLib
parent98c0edfa07dc47e2ae4c7d785d3dd122f430bfc8 (diff)
downloadcoreclr-5fc26e331934ea3e920103de8cb4161d2ff0ba6e.tar.gz
coreclr-5fc26e331934ea3e920103de8cb4161d2ff0ba6e.tar.bz2
coreclr-5fc26e331934ea3e920103de8cb4161d2ff0ba6e.zip
Pick up new CoreFX packages and abandon old ones
Diffstat (limited to 'tests/src/CoreMangLib')
-rw-r--r--tests/src/CoreMangLib/cti/system/text/unicodeencoding/unicodeencodinggetbytecount1.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/CoreMangLib/cti/system/text/unicodeencoding/unicodeencodinggetbytecount1.cs b/tests/src/CoreMangLib/cti/system/text/unicodeencoding/unicodeencodinggetbytecount1.cs
index 4bc7f40c0e..a753b13604 100644
--- a/tests/src/CoreMangLib/cti/system/text/unicodeencoding/unicodeencodinggetbytecount1.cs
+++ b/tests/src/CoreMangLib/cti/system/text/unicodeencoding/unicodeencodinggetbytecount1.cs
@@ -189,7 +189,7 @@ public class UnicodeEncodingGetByteCount
TestLibrary.TestFramework.BeginScenario("NegTest1:Invoke the method with null");
try
{
- actualValue = uEncoding.GetByteCount(null,0,0);
+ actualValue = uEncoding.GetByteCount((char[])null, 0, 0);
TestLibrary.TestFramework.LogError("007", "No ArgumentNullException throw out expected.");
retVal = false;