We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f2eb104 + dc14bd4 commit db68fb5Copy full SHA for db68fb5
core/shared/src/test/scala/fs2/ParEvalMapSuite.scala
@@ -22,6 +22,7 @@
22
package fs2
23
24
import cats.effect.std.CountDownLatch
25
+import cats.effect.testkit.TestControl
26
import cats.effect.{Deferred, IO}
27
import cats.syntax.all._
28
import org.scalacheck.effect.PropF.forAllF
@@ -66,7 +67,9 @@ class ParEvalMapSuite extends Fs2Suite {
66
67
}
68
69
test("may not be preserved in parEvalMapUnordered") {
- run(_.parEvalMapUnorderedUnbounded(identity)).assertEquals(List(1, 2, 3))
70
+ TestControl.executeEmbed(
71
+ run(_.parEvalMapUnorderedUnbounded(identity)).assertEquals(List(1, 2, 3))
72
+ )
73
74
75
def run(pipe: Pipe[IO, IO[Int], Int]) =
0 commit comments