Skip to content

Commit

Permalink
Removed temporary test info(...) output used for sanity checking
Browse files Browse the repository at this point in the history
Signed-off-by: Darren Bishop <[email protected]>
  • Loading branch information
DarrenBishop committed Mar 27, 2024
1 parent 8ef085e commit c86948c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/test/scala/simulacrum/typeclass.scala
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class TypeClassTest extends AnyWordSpec with Matchers {

implicit val sumVargs: Vargs[Sum] = new Vargs[Sum] {
def fold[T2](x: Sum, ys: T2*)(f: (Sum, T2) => Sum): Sum =
ys.foldLeft(x) { (ds, t2) => info("folding " + t2); f(ds, t2) }
ys.foldLeft(x) { (ds, t2) => f(ds, t2) }
}

import Vargs.ops._
Expand Down

0 comments on commit c86948c

Please sign in to comment.