Fixed Initialized misspelling on unit tests (dotnet/corefx#35108)
authorGeorge Stocker <gjstocker@gmail.com>
Wed, 6 Feb 2019 03:33:52 +0000 (22:33 -0500)
committerStephen Toub <stoub@microsoft.com>
Wed, 6 Feb 2019 03:33:52 +0000 (22:33 -0500)
Commit migrated from https://github.com/dotnet/corefx/commit/382183fa612bfdce65fb8a837e4a89b8d80d0966

src/libraries/System.Runtime/tests/System/LazyTests.cs

index 84615010064dff70aea4d5668a1f3c8894488f3a..b803ceb8611e311e89dd1f8c1d496259e14c9d5e 100644 (file)
@@ -387,7 +387,7 @@ namespace System.Tests
         }
 
         [Fact]
-        public static void EnsureInitalized_SimpleRefTypes()
+        public static void EnsureInitialized_SimpleRefTypes()
         {
             var hdcTemplate = new HasDefaultCtor();
             string strTemplate = "foo";
@@ -418,7 +418,7 @@ namespace System.Tests
         }
 
         [Fact]
-        public static void EnsureInitalized_SimpleRefTypes_Invalid()
+        public static void EnsureInitialized_SimpleRefTypes_Invalid()
         {
             // Func based initialization (nulls not permitted).
             string e = null;
@@ -486,7 +486,7 @@ namespace System.Tests
         }
 
         [Fact]
-        public static void EnsureInitalized_ComplexRefTypes_Invalid()
+        public static void EnsureInitialized_ComplexRefTypes_Invalid()
         {
             // Activator.CreateInstance (for a type without a default ctor).
             NoDefaultCtor ndc = null;