Skip to content

Commit

Permalink
Remove trace
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Jan 5, 2024
1 parent 27c1fb2 commit c978456
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,7 @@ class CogenDerivationSuite extends MagnolifySuite {
implicit val arbList: Arbitrary[List[T]] = Arbitrary(Gen.listOfN(10, arb.arbitrary))
property(s"$name.uniqueness") {
Prop.forAll { (seed: Seed, xs: List[T]) =>
val coper = xs.map(co.perturb(seed, _))
val result = coper.toSet.size == xs.toSet.size
if (!result) {
println("coper: " + coper)
println("origin: " + xs)
}
result
xs.map(co.perturb(seed, _)).toSet.size == xs.toSet.size
}
}
property(s"$name.consistency") {
Expand Down

0 comments on commit c978456

Please sign in to comment.