Skip to content

Commit a8e0f67

Browse files
committed
[Select] fix unit tests.
1 parent 98ede8d commit a8e0f67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StructLinq.Tests/SelectTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void StructTest()
4141

4242
protected override IEnumerable<int> Build(int size)
4343
{
44-
return StructEnumerable.Range(-1, size).Select(x => x * 2);
44+
return StructEnumerable.Range(-1, size).Select(x => x * 2, x=>x);
4545
}
4646

4747
struct MultFunction : IFunction<int, double>

0 commit comments

Comments
 (0)