We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0a632 commit f0e27ceCopy full SHA for f0e27ce
src/FSharp.Control.TaskSeq.Test/TaskSeq.Realworld.fs
@@ -185,8 +185,8 @@ type ``Real world tests``(output: ITestOutputHelper) =
185
}
186
187
// the following is extremely slow, which is why we just use F#'s comparison instead
188
- // Using this takes 67s, compared to 0.25s using normal F# comparison.
189
- do! ts |> TaskSeq.iter (should equal expected)
+ // Using the following line takes 6s, compared to 0.25s using normal F# comparison.
+ //do! ts |> TaskSeq.iter (should equal expected)
190
do! ts |> TaskSeq.iter ((=) expected >> (should be True))
191
do! task { do count |> should equal 4096 }
192
0 commit comments