Skip to content

Commit

Permalink
Fix problems caused by ScalaTest update changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcelo da Silva Gomes committed Dec 4, 2019
1 parent 639b131 commit 3562505
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ val circeV = "0.12.3"
val betterMonadicForV = "0.3.1"
val kindProjectorV = "0.10.3"
val scalaTestV = "3.1.0"
val scalaCheckV = "1.14.2"
val scalatestPlusScalaCheckV = "3.1.0.0"
val scalaCheckShapelessV = "1.2.3"
val catsScalaCheckV = "0.1.1"
val monocleV = "2.0.0"
Expand Down Expand Up @@ -60,7 +60,7 @@ libraryDependencies ++= Seq(
"com.github.julien-truffaut" %% "monocle-macro" % monocleV,

"org.scalatest" %% "scalatest" % scalaTestV % "test",
"org.scalacheck" %% "scalacheck" % scalaCheckV % "test",
"org.scalatestplus" %% "scalacheck-1-14" % scalatestPlusScalaCheckV % "test",
"com.github.alexarchambault" %% "scalacheck-shapeless_1.14" % scalaCheckShapelessV % "test"
)

Expand Down
8 changes: 4 additions & 4 deletions src/test/scala/joguin/testutil/PropertyBasedSpec.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package joguin.testutil

import org.scalatest.Matchers
import org.scalatest.PropSpec
import org.scalatestplus.scalacheck.ScalaCheckPropertyChecks
import org.scalatest.matchers.should.Matchers
import org.scalatest.propspec.AnyPropSpec
import org.scalatestplus.scalacheck.ScalaCheckDrivenPropertyChecks

abstract class PropertyBasedSpec extends PropSpec with ScalaCheckPropertyChecks with Matchers
abstract class PropertyBasedSpec extends AnyPropSpec with ScalaCheckDrivenPropertyChecks with Matchers

0 comments on commit 3562505

Please sign in to comment.