We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948b637 commit f204cddCopy full SHA for f204cdd
1 file changed
tests/FSharp.Control.AsyncSeq.Tests/AsyncSeqTests.fs
@@ -1243,12 +1243,12 @@ let ``Async.mergeAll should work``() =
1243
let ``Async.mergeAll should perform well``() =
1244
let mergeTest n =
1245
[ for i in 1 .. n ->
1246
- asyncSeq{ do! Async.Sleep 1;
+ asyncSeq{ do! Async.Sleep 500;
1247
yield i } ]
1248
|> AsyncSeq.mergeAll
1249
|> AsyncSeq.toListSynchronously
1250
1251
- Assert.DoesNotThrow(fun _ -> mergeTest 100 |> ignore)
+ Assert.DoesNotThrow(fun _ -> mergeTest 500 |> ignore)
1252
1253
[<Test>]
1254
let ``Async.mergeAll should be fair``() =
0 commit comments