summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJim Lawson2020-04-13 17:24:14 -0700
committerGitHub2020-04-13 17:24:14 -0700
commitcec050dbd898b9d1f5ce4d4558af33c7e799b7a9 (patch)
treeaa189489bf495a01eea59d7b5d7cda74c4d51320 /build.sbt
parenta39d0e13792e63e0bd3e0c1b0b9c27e309927a52 (diff)
Update scalatest to 3.1.0 (#1394)
Co-authored-by: Scala Steward <me@scala-steward.org>
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 125b029b..91d647e5 100644
--- a/build.sbt
+++ b/build.sbt
@@ -105,8 +105,8 @@ lazy val chiselSettings = Seq (
// An explicit dependency on junit seems to alleviate this.
libraryDependencies ++= Seq(
"junit" % "junit" % "4.13" % "test",
- "org.scalatest" %% "scalatest" % "3.0.8" % "test",
- "org.scalacheck" %% "scalacheck" % "1.14.3" % "test",
+ "org.scalatest" %% "scalatest" % "3.1.0" % "test",
+ "org.scalatestplus" %% "scalacheck-1-14" % "3.1.0.1" % "test",
"com.github.scopt" %% "scopt" % "3.7.1"
),
javacOptions ++= javacOptionsVersion(scalaVersion.value)