Skip to content

Commit c35b1b5

Browse files
authored
Rename UnrollEqualsStartsWIth to UnrollEqualsStartsWith (#89656)
1 parent 7a9ff69 commit c35b1b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWIth.cs renamed to src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWith.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
using System.Runtime.CompilerServices;
88
using Xunit;
99

10-
public class UnrollEqualsStartsWIth
10+
public class UnrollEqualsStartsWith
1111
{
1212
[Fact]
1313
public static int TestEntryPoint()
1414
{
15-
var testTypes = typeof(UnrollEqualsStartsWIth).Assembly
15+
var testTypes = typeof(UnrollEqualsStartsWith).Assembly
1616
.GetTypes()
1717
.Where(t => t.Name.StartsWith("Tests_len"))
1818
.ToArray();

src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWIth.csproj renamed to src/tests/JIT/opt/Vectorization/UnrollEqualsStartsWith.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Optimize>True</Optimize>
44
</PropertyGroup>
55
<ItemGroup>
6-
<Compile Include="UnrollEqualsStartsWIth.cs" />
7-
<Compile Include="UnrollEqualsStartsWIth_Tests.cs" />
6+
<Compile Include="UnrollEqualsStartsWith.cs" />
7+
<Compile Include="UnrollEqualsStartsWith_Tests.cs" />
88
</ItemGroup>
99
</Project>

0 commit comments

Comments
 (0)