Skip to content

Commit

Permalink
Update scalatest to 3.2.17 (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Sep 13, 2023
1 parent ac243a6 commit 702ab32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ lazy val `fsi-macros` = crossProject(JVMPlatform, JSPlatform, NativePlatform)
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) => Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scalatest" %% "scalatest" % "3.2.16" % Test
"org.scalatest" %% "scalatest" % "3.2.17" % Test
)
case _ => Seq("org.scalatest" %% "scalatest" % "3.2.16" % Test)
case _ => Seq("org.scalatest" %% "scalatest" % "3.2.17" % Test)
}
}
)
Expand Down Expand Up @@ -149,7 +149,7 @@ lazy val `fsi-benchmark-core` = crossProject(JVMPlatform)
.settings(
crossScalaVersions := Seq("2.13.11", scalaVersion.value, "2.11.12"),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.16" % Test
"org.scalatest" %% "scalatest" % "3.2.17" % Test
)
)

Expand All @@ -167,7 +167,7 @@ lazy val `fsi-benchmark` = crossProject(JVMPlatform)
"com.dongxiguo" %% "fastring" % "1.0.0",
"com.outr" %% "perfolation" % "1.1.7",
"com.outr" %% "scribe-slf4j" % "2.7.13" % Test,
"org.scalatest" %% "scalatest" % "3.2.16" % Test
"org.scalatest" %% "scalatest" % "3.2.17" % Test
)
)

Expand Down

0 comments on commit 702ab32

Please sign in to comment.