Skip to content

Commit f0e27ce

Browse files
committed
Remove time-consuming comparison code in test
1 parent ac0a632 commit f0e27ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FSharp.Control.TaskSeq.Test/TaskSeq.Realworld.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ type ``Real world tests``(output: ITestOutputHelper) =
185185
}
186186

187187
// the following is extremely slow, which is why we just use F#'s comparison instead
188-
// Using this takes 67s, compared to 0.25s using normal F# comparison.
189-
do! ts |> TaskSeq.iter (should equal expected)
188+
// Using the following line takes 6s, compared to 0.25s using normal F# comparison.
189+
//do! ts |> TaskSeq.iter (should equal expected)
190190
do! ts |> TaskSeq.iter ((=) expected >> (should be True))
191191
do! task { do count |> should equal 4096 }
192192
}

0 commit comments

Comments
 (0)