Skip to content

Commit

Permalink
Add ScalaTest 3.2.0 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown committed Jun 19, 2020
1 parent 76edb10 commit 22c3618
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ isTravisBuild in Global := sys.env.get("TRAVIS").isDefined

val scalaCheckVersion = "1.14.3"

val scalatestplusScalaCheckVersion = "3.1.2.0"
val scalatestVersion = "3.2.0"
val scalatestplusScalaCheckVersion = "3.2.0.0"

val disciplineVersion = "1.0.2"

Expand Down Expand Up @@ -148,6 +149,8 @@ lazy val disciplineDependencies = Seq(
lazy val testingDependencies = Seq(
libraryDependencies ++= Seq(
"org.typelevel" %%% "discipline-scalatest" % disciplineScalatestVersion % Test,
"org.scalatest" %%% "scalatest-shouldmatchers" % scalatestVersion % Test,
"org.scalatest" %%% "scalatest-funsuite" % scalatestVersion % Test,
"org.scalatestplus" %%% "scalacheck-1-14" % scalatestplusScalaCheckVersion % Test
)
)
Expand Down
1 change: 0 additions & 1 deletion tests/src/test/scala/cats/tests/SemigroupSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package cats.tests

import cats.{Invariant, InvariantMonoidal, Semigroupal}
import cats.kernel.Semigroup
import org.scalatest._
import org.scalatest.matchers.should.Matchers
import org.scalatest.funsuite._
import org.scalatestplus.scalacheck.ScalaCheckDrivenPropertyChecks
Expand Down

0 comments on commit 22c3618

Please sign in to comment.