summaryrefslogtreecommitdiff
path: root/tests/src/Loader
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/Loader
parentd076cd44b309d6b99fdad34c5156126f045c0933 (diff)
downloadcoreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.tar.gz
coreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.tar.bz2
coreclr-3c0d40ffd18bf5df20f3aef51a01e2a283998682.zip
typo (#13287)
Diffstat (limited to 'tests/src/Loader')
-rw-r--r--tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs b/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs
index 2d37258573..57c9dfd27b 100644
--- a/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs
+++ b/tests/src/Loader/classloader/regressions/434481/b434481_genericrecurinit.cs
@@ -17,7 +17,7 @@ internal class Program
if( tstr != "Program+S`1[System.Int32]" )
{
Console.WriteLine( "Err_01: Expected type: Program+S`1[System.Int32]" );
- Console.WriteLine( "Err_01: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_01: Actually get type: " + tstr );
iErrorCount++;
}
S<object> o = new S<object>();
@@ -26,7 +26,7 @@ internal class Program
if( tstr != "Program+S`1[System.Object]" )
{
Console.WriteLine( "Err_02: Expected type: Program+S`1[System.Object]" );
- Console.WriteLine( "Err_02: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_02: Actually get type: " + tstr );
iErrorCount++;
}
@@ -36,7 +36,7 @@ internal class Program
if( tstr != "Program+S`1[System.String]" )
{
Console.WriteLine( "Err_01: Expected type: Program+S`1[System.String]" );
- Console.WriteLine( "Err_01: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_01: Actually get type: " + tstr );
iErrorCount++;
}
S<Program> p = new S<Program>();
@@ -45,7 +45,7 @@ internal class Program
if( tstr != "Program+S`1[Program]" )
{
Console.WriteLine( "Err_01: Expected type: Program+S`1[Program]" );
- Console.WriteLine( "Err_01: Actualy get type: " + tstr );
+ Console.WriteLine( "Err_01: Actually get type: " + tstr );
iErrorCount++;
}
}catch( Exception e)