@@ -16,7 +16,7 @@ let ``skipping should return all elements after the first non-match``() =
1616
1717
1818[<Test>]
19- let ``toArray should collect the results into an array `` () =
19+ let ``AsyncSeq. toArray`` () =
2020
2121 let s = asyncSeq {
2222 yield 1
@@ -30,7 +30,7 @@ let ``toArray should collect the results into an array``() =
3030
3131
3232[<Test>]
33- let ``toList should collect the results into an array `` () =
33+ let ``AsyncSeq. toList`` () =
3434
3535 let s = asyncSeq {
3636 yield 1
@@ -44,7 +44,7 @@ let ``toList should collect the results into an array``() =
4444
4545
4646[<Test>]
47- let ``concatSeq should flatten a sequence `` () =
47+ let ``AsyncSeq. concatSeq`` () =
4848
4949 let s = asyncSeq {
5050 yield [ 1 ; 2 ]
@@ -62,7 +62,7 @@ let ``concatSeq should flatten a sequence``() =
6262
6363
6464[<Test>]
65- let ``unfoldAsync should generate a sequence `` () =
65+ let ``AsyncSeq. unfoldAsync`` () =
6666
6767 let gen s =
6868 if s < 3 then ( s, s + 1 ) |> Some |> async.Return
@@ -78,7 +78,7 @@ let ``unfoldAsync should generate a sequence``() =
7878
7979
8080[<Test>]
81- let ``interleave should interleave two sequences `` () =
81+ let ``AsyncSeq. interleave`` () =
8282 let s1 = AsyncSeq.ofSeq [ " a" ; " b" ; " c" ]
8383 let s2 = AsyncSeq.ofSeq [ 1 ; 2 ; 3 ]
8484 let merged = AsyncSeq.interleave s1 s2 |> AsyncSeq.toList |> Async.RunSynchronously
@@ -87,7 +87,7 @@ let ``interleave should interleave two sequences``() =
8787
8888
8989[<Test>]
90- let ``bufferByCount should buffer `` () =
90+ let ``AsyncSeq. bufferByCount`` () =
9191
9292 let s = asyncSeq {
9393 yield 1
0 commit comments