From f5ff70a79e7dc88456a6bb6e56ad6c5c17aaaffa Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 13 Feb 2021 18:54:05 +0100 Subject: [PATCH] Update junit to 4.13.2 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1a3de55..0599394 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ lazy val scalaLibraryNext = crossProject(JVMPlatform, JSPlatform) .crossType(CrossType.Pure) .in(file(".")) .jvmSettings( - libraryDependencies += "junit" % "junit" % "4.13.1" % Test, + libraryDependencies += "junit" % "junit" % "4.13.2" % Test, libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test, testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"), )