Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Update scalatest to 3.1.1 #1260

Merged
merged 1 commit into from
Feb 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions core/src/test/scala/sbtorgpolicies/TestOps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
package sbtorgpolicies

import org.scalamock.scalatest.MockFactory
import org.scalatest.{FunSuite, Matchers}
import org.scalatest.funsuite.AnyFunSuite
import org.scalatest.matchers.should.Matchers
import org.scalatestplus.scalacheck.Checkers

import scala.language.implicitConversions

trait TestOps extends FunSuite with Matchers with Checkers with MockFactory {
trait TestOps extends AnyFunSuite with Matchers with Checkers with MockFactory {

implicit def anyEq[A](a: A): AnyEq[A] = new AnyEq[A](a)

Expand Down
4 changes: 3 additions & 1 deletion project/ProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ object ProjectPlugin extends AutoPlugin {
val scalacheck: String = "1.14.3"
val scalacheckToolbox: String = "0.3.2"
val scalamock: String = "4.4.0"
val scalatest: String = "3.0.8"
val scalatest: String = "3.1.1"
val scalatestPlus: String = "3.1.1.1"
val scalaxml: String = "1.2.0"
}

Expand Down Expand Up @@ -92,6 +93,7 @@ object ProjectPlugin extends AutoPlugin {
%%("cats-laws", V.cats) % Test,
%%("scalacheck", V.scalacheck) % Test,
%%("scalatest", V.scalatest) % Test,
%%("scalatestPlus", V.scalatestPlus) % Test,
%%("scheckToolboxDatetime", V.scalacheckToolbox) % Test,
%%("scalamock", V.scalamock) % Test
)
Expand Down