Skip to content

Commit 30176f9

Browse files
author
Oren (electricessence)
committed
Fix tests.
1 parent 2a97208 commit 30176f9

File tree

2 files changed

+78
-81
lines changed

2 files changed

+78
-81
lines changed

Open.ChannelExtensions.Tests/BasicTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public static async Task PipeToBounded(int testSize)
104104
var sw = Stopwatch.StartNew();
105105
var total = await range
106106
.ToChannel(singleReader: true)
107-
.PipeTo(channel, true)
107+
.PipeTo(channel)
108108
.ReadAllAsync(i =>
109109
{
110110
result.Add(i);
@@ -138,7 +138,7 @@ public static async Task PipeToUnbound(int testSize)
138138
var sw = Stopwatch.StartNew();
139139
var total = await range
140140
.ToChannel(singleReader: true)
141-
.PipeTo(channel, true)
141+
.PipeTo(channel)
142142
.ReadAllAsync(i =>
143143
{
144144
result.Add(i);

0 commit comments

Comments
 (0)