Rename UnrollEqualsStartsWIth to UnrollEqualsStartsWith (#89656)
authorMarc Brooks <IDisposable@gmail.com>
Sat, 29 Jul 2023 18:27:31 +0000 (13:27 -0500)
committerGitHub <noreply@github.com>
Sat, 29 Jul 2023 18:27:31 +0000 (20:27 +0200)
src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWith.cs [moved from src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWIth.cs with 97% similarity]
src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWith.csproj [moved from src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWIth.csproj with 56% similarity]
src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWith_Tests.cs [moved from src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWIth_Tests.cs with 100% similarity]

@@ -7,12 +7,12 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 using Xunit;
 
-public class UnrollEqualsStartsWIth
+public class UnrollEqualsStartsWith
 {
     [Fact]
     public static int TestEntryPoint()
     {
-        var testTypes = typeof(UnrollEqualsStartsWIth).Assembly
+        var testTypes = typeof(UnrollEqualsStartsWith).Assembly
             .GetTypes()
             .Where(t => t.Name.StartsWith("Tests_len"))
             .ToArray();
@@ -3,7 +3,7 @@
     <Optimize>True</Optimize>
   </PropertyGroup>
   <ItemGroup>
-    <Compile Include="UnrollEqualsStartsWIth.cs" />
-    <Compile Include="UnrollEqualsStartsWIth_Tests.cs" />
+    <Compile Include="UnrollEqualsStartsWith.cs" />
+    <Compile Include="UnrollEqualsStartsWith_Tests.cs" />
   </ItemGroup>
 </Project>