I\'m facing a nasty exception when trying to write a test using ScalaCheck and ScalaTest. Here\'s my dependencies:
libraryDependencies ++= Seq(
\"org.scala
ScalaTest 2.2.6 is incompatible with ScalaCheck 1.13.0. Downgrading to "scalacheck" % "1.12.5" helps.
This was reported as https://github.com/rickynils/scalacheck/issues/217. The issue is closed with following resolution:
All current releases of ScalaTest (2.2.6, 3.0.0 etc) are built against ScalaCheck 1.12.1 (see https://github.com/scalatest/scalatest/blob/master/project/scalatest.scala#L134). Therefore, there are no guarantees that you can simply swap out ScalaCheck 1.12.x for 1.13.y. ScalaCheck only maintains binary compatibility within the same minor version series (1.12.1, 1.12.2, 1.12.3 etc).