Skip to content

Commit 6ec0206

Browse files
committed
[Where] fix unit test.
1 parent a8e0f67 commit 6ec0206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StructLinq.Tests/WhereTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class WhereTests : AbstractEnumerableTests<int>
99
{
1010
protected override IEnumerable<int> Build(int size)
1111
{
12-
return StructEnumerable.Range(-1, size).Where(x => x >= -1);
12+
return StructEnumerable.Range(-1, size).Where(x => x >= -1, x=>x);
1313
}
1414

1515
[Fact]

0 commit comments

Comments
 (0)