Skip to content

Commit 415defa

Browse files
OK
1 parent 40dd77c commit 415defa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/SimpleTplDataflowPipelines.Tests/PipelineBuilderTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public void ExceptionsFromMultipleBlocks()
175175
var block3 = new TransformBlock<int, int>(
176176
async x => { await Task.Delay(50); throw new ApplicationException(x.ToString()); },
177177
new ExecutionDataflowBlockOptions() { MaxDegreeOfParallelism = 2 });
178-
var block4 = new ActionBlock<int>(_ => {});
178+
var block4 = new ActionBlock<int>(_ => { });
179179

180180
var pipeline = PipelineBuilder
181181
.BeginWith(block1)

0 commit comments

Comments
 (0)