File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
modules/core/shared/src/main/scala/weaver Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import scala.concurrent.duration.FiniteDuration
44
55import cats .data .Chain
66import cats .effect .{ Async , Resource }
7- import cats .syntax .all ._
87
98import fs2 .Stream
109import org .portablescala .reflect .annotation .EnableReflectiveInstantiation
@@ -29,11 +28,8 @@ trait EffectSuite[F[_]] extends BaseSuiteClass with EffectSuiteAux
2928
3029 def name : String = self.getClass.getName.replace(" $" , " " )
3130
32- protected def adaptRunError : PartialFunction [Throwable , Throwable ] =
33- PartialFunction .empty
34-
3531 final def run (args : List [String ])(report : TestOutcome => F [Unit ]): F [Unit ] =
36- spec(args).evalMap(report).compile.drain.adaptErr(adaptRunError)
32+ spec(args).evalMap(report).compile.drain
3733
3834 def spec (args : List [String ]): Stream [F , TestOutcome ]
3935}
You can’t perform that action at this time.
0 commit comments