summaryrefslogtreecommitdiff
path: root/tests/src/CoreMangLib/cti
diff options
context:
space:
mode:
authorRama Krishnan Raghupathy <ramarag@microsoft.com>2016-03-05 01:22:29 -0800
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2016-03-05 01:28:27 -0800
commitc2b87fcc650a108bd9d3f9eb5b46f0b25cb41af5 (patch)
tree790438ecabb12fedd3a142d39dccd9b0d36563eb /tests/src/CoreMangLib/cti
parent34e1fad44ec969a85db8464eaab3c13b406cb5a2 (diff)
downloadcoreclr-c2b87fcc650a108bd9d3f9eb5b46f0b25cb41af5.tar.gz
coreclr-c2b87fcc650a108bd9d3f9eb5b46f0b25cb41af5.tar.bz2
coreclr-c2b87fcc650a108bd9d3f9eb5b46f0b25cb41af5.zip
Fix syntax error in test code
Diffstat (limited to 'tests/src/CoreMangLib/cti')
-rw-r--r--tests/src/CoreMangLib/cti/system/intptr/intptrgethashcode.cs2
-rw-r--r--tests/src/CoreMangLib/cti/system/uintptr/uintptrgethashcode.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/CoreMangLib/cti/system/intptr/intptrgethashcode.cs b/tests/src/CoreMangLib/cti/system/intptr/intptrgethashcode.cs
index 82c234386c..008726e3d8 100644
--- a/tests/src/CoreMangLib/cti/system/intptr/intptrgethashcode.cs
+++ b/tests/src/CoreMangLib/cti/system/intptr/intptrgethashcode.cs
@@ -113,7 +113,7 @@ public class IntPtrGetHashCode
System.IntPtr ipTwo = new IntPtr(addressTwo);
if (ipOne.GetHashCode() == ipTwo.GetHashCode())
{
- TestLibrary.TestFramework.LogError("004", "expect different hashcodes.")
+ TestLibrary.TestFramework.LogError("004", "expect different hashcodes.");
retVal = false;
}
}
diff --git a/tests/src/CoreMangLib/cti/system/uintptr/uintptrgethashcode.cs b/tests/src/CoreMangLib/cti/system/uintptr/uintptrgethashcode.cs
index b39fb271c1..c183728354 100644
--- a/tests/src/CoreMangLib/cti/system/uintptr/uintptrgethashcode.cs
+++ b/tests/src/CoreMangLib/cti/system/uintptr/uintptrgethashcode.cs
@@ -170,7 +170,7 @@ public class UIntPtrGetHashCode
System.UIntPtr ipTwo = new UIntPtr(addressTwo);
if (ipOne.GetHashCode() == ipTwo.GetHashCode())
{
- TestLibrary.TestFramework.LogError("004", "expect different hashcodes.")
+ TestLibrary.TestFramework.LogError("004", "expect different hashcodes.");
retVal = false;
}
}