summaryrefslogtreecommitdiff
path: root/tests/src/CoreMangLib
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2017-08-09 11:09:28 -0700
committerJan Kotas <jkotas@microsoft.com>2017-08-09 11:09:28 -0700
commit3c0d40ffd18bf5df20f3aef51a01e2a283998682 (patch)
tree98a79404539e3459fa08daaad42517e46976b3ae /tests/src/CoreMangLib
parentd076cd44b309d6b99fdad34c5156126f045c0933 (diff)
downloadcoreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.tar.gz
coreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.tar.bz2
coreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.zip
typo (#13287)
Diffstat (limited to 'tests/src/CoreMangLib')
-rw-r--r--tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs b/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs
index 0e84ab9f66..59b631b0da 100644
--- a/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs
+++ b/tests/src/CoreMangLib/cti/system/string/stringcompareordinal2.cs
@@ -163,7 +163,7 @@ public class StringCompareOrdinal2
int ActualResult = string.CompareOrdinal(strA, indexA, strB, indexB, length);
if (ActualResult < 0 || ActualResult == 0)
{
- TestLibrary.TestFramework.LogError("005", "Null string and not null string CompareOrdinal Expected Result is less 0£¬Actual Result is ( " + ActualResult + ")");
+ TestLibrary.TestFramework.LogError("005", "Null string and not null string CompareOrdinal Expected Result is less 0,Actual Result is ( " + ActualResult + ")");
retVal = false;
}
}
@@ -195,7 +195,7 @@ public class StringCompareOrdinal2
int ActualResult = string.CompareOrdinal(strA, indexA, strB, indexB, length);
if (ActualResult != 0)
{
- TestLibrary.TestFramework.LogError("007", "Two like not NullStrings CompareOrdinal one ExpectResult is 0,ActulResult is (" + ActualResult + ")");
+ TestLibrary.TestFramework.LogError("007", "Two like not NullStrings CompareOrdinal one ExpectResult is 0,ActualResult is (" + ActualResult + ")");
retVal = false;
}
}