File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,25 +36,25 @@ let validateSequenceWithOffset offset ts =
36
36
37
37
module EmptySeq =
38
38
[<Theory; ClassData( typeof< TestEmptyVariants>) >]
39
- let ``TaskSeq - map maps in correct order `` variant =
39
+ let ``TaskSeq - map empty `` variant =
40
40
Gen.getEmptyVariant variant
41
41
|> TaskSeq.map ( fun item -> char ( item + 64 ))
42
42
|> verifyEmpty
43
43
44
44
[<Theory; ClassData( typeof< TestEmptyVariants>) >]
45
- let ``TaskSeq - mapi maps in correct order `` variant =
45
+ let ``TaskSeq - mapi empty `` variant =
46
46
Gen.getEmptyVariant variant
47
47
|> TaskSeq.mapi ( fun i _ -> char ( i + 65 ))
48
48
|> verifyEmpty
49
49
50
50
[<Theory; ClassData( typeof< TestEmptyVariants>) >]
51
- let ``TaskSeq - mapAsync maps in correct order `` variant =
51
+ let ``TaskSeq - mapAsync empty `` variant =
52
52
Gen.getEmptyVariant variant
53
53
|> TaskSeq.mapAsync ( fun item -> task { return char ( item + 64 ) })
54
54
|> verifyEmpty
55
55
56
56
[<Theory; ClassData( typeof< TestEmptyVariants>) >]
57
- let ``TaskSeq - mapiAsync maps in correct order `` variant =
57
+ let ``TaskSeq - mapiAsync empty `` variant =
58
58
Gen.getEmptyVariant variant
59
59
|> TaskSeq.mapiAsync ( fun i _ -> task { return char ( i + 65 ) })
60
60
|> verifyEmpty
You can’t perform that action at this time.
0 commit comments