Skip to content

Commit fffeff3

Browse files
authored
Update AsyncSeqTests.fs
1 parent b159ff5 commit fffeff3

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

tests/FSharp.Control.AsyncSeq.Tests/AsyncSeqTests.fs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff 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>]
21692157
let ``AsyncSeq.replicateInfiniteAsync with exception should propagate on enumeration``() =
21702158
let exceptionSeq = AsyncSeq.replicateInfiniteAsync (async { failwith "test exception" })

0 commit comments

Comments
 (0)