Skip to content

Commit c978456

Browse files
author
Michel Davit
committed
Remove trace
1 parent 27c1fb2 commit c978456

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

scalacheck/src/test/scala/magnolify/scalacheck/CogenDerivationSuite.scala

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,7 @@ class CogenDerivationSuite extends MagnolifySuite {
3636
implicit val arbList: Arbitrary[List[T]] = Arbitrary(Gen.listOfN(10, arb.arbitrary))
3737
property(s"$name.uniqueness") {
3838
Prop.forAll { (seed: Seed, xs: List[T]) =>
39-
val coper = xs.map(co.perturb(seed, _))
40-
val result = coper.toSet.size == xs.toSet.size
41-
if (!result) {
42-
println("coper: " + coper)
43-
println("origin: " + xs)
44-
}
45-
result
39+
xs.map(co.perturb(seed, _)).toSet.size == xs.toSet.size
4640
}
4741
}
4842
property(s"$name.consistency") {

0 commit comments

Comments
 (0)