summaryrefslogtreecommitdiff
path: root/tests/src/CoreMangLib
diff options
context:
space:
mode:
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;