Skip to content

Commit 3865564

Browse files
committed
Fix formatting
1 parent f623c04 commit 3865564

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/FSharp.Control.TaskSeq.Test/TaskSeq.TakeWhile.Tests.fs

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,26 @@ module With =
4848
module EmptySeq =
4949
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
5050
let ``TaskSeq-takeWhile+A has no effect`` variant = task {
51-
do! Gen.getEmptyVariant variant
51+
do!
52+
Gen.getEmptyVariant variant
5253
|> TaskSeq.takeWhile ((=) 12)
5354
|> verifyEmpty
5455

55-
do! Gen.getEmptyVariant variant
56+
do!
57+
Gen.getEmptyVariant variant
5658
|> TaskSeq.takeWhileAsync ((=) 12 >> Task.fromResult)
5759
|> verifyEmpty
5860
}
5961

6062
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
6163
let ``TaskSeq-takeWhileInclusive+A has no effect`` variant = task {
62-
do! Gen.getEmptyVariant variant
64+
do!
65+
Gen.getEmptyVariant variant
6366
|> TaskSeq.takeWhileInclusive ((=) 12)
6467
|> verifyEmpty
6568

66-
do! Gen.getEmptyVariant variant
69+
do!
70+
Gen.getEmptyVariant variant
6771
|> TaskSeq.takeWhileInclusiveAsync ((=) 12 >> Task.fromResult)
6872
|> verifyEmpty
6973
}

0 commit comments

Comments
 (0)