Skip to content

Commit

Permalink
Update src/FSharp.Control.TaskSeq.Test/TaskSeq.Do.Tests.fs
Browse files Browse the repository at this point in the history
Co-authored-by: Abel Braaksma <[email protected]>
  • Loading branch information
bartelink and abelbraaksma authored Dec 24, 2023
1 parent 2ac4936 commit 767f78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FSharp.Control.TaskSeq.Test/TaskSeq.Do.Tests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ let ``CE taskSeq: use 'do!' with all kinds of overloads at once`` () =
do! ValueTask <| task { do value <- value + 1 }
do! ValueTask.ofTask (task { do value <- value + 1 })
do! ValueTask<_>(()) // unit ValueTask that completes immediately
do! Task.fromResult () // unit Task that completes immediately
do! Task.fromResult (()) // unit Task that completes immediately
do! Task.Delay 0
do! Async.Sleep 0
do! async { value <- value + 1 } // eq 4
Expand Down

0 comments on commit 767f78b

Please sign in to comment.