Skip to content

Commit 505d591

Browse files
authored
Merge pull request #7 from insurello/better-async-test
Better AsyncResult.sequence test
2 parents cea2a46 + f85395d commit 505d591

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Insurello.AsyncExtra.Tests/AsyncExtraTests.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ let tests =
3333
j)
3434

3535
let input =
36-
[ (dummyAsync 1)
36+
[ Async.Sleep 100
37+
|> Async.bind (fun _ -> dummyAsync 1)
3738
(dummyAsync 2)
3839
(dummyAsync 3) ]
3940

0 commit comments

Comments
 (0)