From 702ab3275c3e745bc3c7b3ac9576025fe636caa0 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 13 Sep 2023 08:30:49 +0200 Subject: [PATCH] Update scalatest to 3.2.17 (#264) --- build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 05909e1..97bcbca 100644 --- a/build.sbt +++ b/build.sbt @@ -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) } } ) @@ -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 ) ) @@ -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 ) )