File tree Expand file tree Collapse file tree
tests/FSharp.Control.AsyncSeq.Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2153,18 +2153,6 @@ let ``AsyncSeq.bufferByTime with negative time should throw ArgumentException``(
21532153 s |> AsyncSeq.bufferByTime - 1 |> AsyncSeq.toListSynchronously |> ignore
21542154 ) |> ignore
21552155
2156- [<Test>]
2157- let ``AsyncSeq.pairwise with single element should return empty`` () =
2158- let s = asyncSeq { yield 42 }
2159- let s ' = s |> AsyncSeq.pairwise |> AsyncSeq.toListSynchronously
2160- Assert.True(([] = s'))
2161-
2162- [<Test>]
2163- let ``AsyncSeq.pairwise with empty sequence should return empty`` () =
2164- let s = AsyncSeq.empty< int>
2165- let s ' = s |> AsyncSeq.pairwise |> AsyncSeq.toListSynchronously
2166- Assert.True(([] = s'))
2167-
21682156[<Test>]
21692157let ``AsyncSeq.replicateInfiniteAsync with exception should propagate on enumeration`` () =
21702158 let exceptionSeq = AsyncSeq.replicateInfiniteAsync ( async { failwith " test exception" })
You can’t perform that action at this time.
0 commit comments