Skip to content

Commit dbd93dd

Browse files
committed
Cleanup
1 parent 205ce14 commit dbd93dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/FSharpy.TaskSeq.Test/TaskSeq.Map.Tests.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ let validateSequenceWithOffset offset ts =
3636

3737
module EmptySeq =
3838
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
39-
let ``TaskSeq-map maps in correct order`` variant =
39+
let ``TaskSeq-map empty`` variant =
4040
Gen.getEmptyVariant variant
4141
|> TaskSeq.map (fun item -> char (item + 64))
4242
|> verifyEmpty
4343

4444
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
45-
let ``TaskSeq-mapi maps in correct order`` variant =
45+
let ``TaskSeq-mapi empty`` variant =
4646
Gen.getEmptyVariant variant
4747
|> TaskSeq.mapi (fun i _ -> char (i + 65))
4848
|> verifyEmpty
4949

5050
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
51-
let ``TaskSeq-mapAsync maps in correct order`` variant =
51+
let ``TaskSeq-mapAsync empty`` variant =
5252
Gen.getEmptyVariant variant
5353
|> TaskSeq.mapAsync (fun item -> task { return char (item + 64) })
5454
|> verifyEmpty
5555

5656
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
57-
let ``TaskSeq-mapiAsync maps in correct order`` variant =
57+
let ``TaskSeq-mapiAsync empty`` variant =
5858
Gen.getEmptyVariant variant
5959
|> TaskSeq.mapiAsync (fun i _ -> task { return char (i + 65) })
6060
|> verifyEmpty

0 commit comments

Comments
 (0)