Skip to content

Commit 16b372f

Browse files
author
DaZombieKiller
committed
Remove missed length parameter on RefEnumerable test
1 parent 5a6bf62 commit 16b372f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UnitTests/UnitTests.HighPerformance.Shared/Enumerables/Test_RefEnumerable{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void Test_RefEnumerable_Indexer_ThrowsIndexOutOfRange()
9292
[DataRow(1, new[] { 1, 2, 3, 4 })]
9393
[DataRow(4, new[] { 1, 5, 9, 13 })]
9494
[DataRow(5, new[] { 1, 6, 11, 16 })]
95-
public void Test_RefEnumerable_Index_Indexer(int length, int step, int[] values)
95+
public void Test_RefEnumerable_Index_Indexer(int step, int[] values)
9696
{
9797
Span<int> data = new[]
9898
{

0 commit comments

Comments
 (0)