From efcf7837a387fcecae387194104ef7121a441f59 Mon Sep 17 00:00:00 2001 From: Travis Brown Date: Fri, 21 Jun 2019 16:28:56 -0500 Subject: [PATCH] Fix ScalaTest dependency --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 196383d..f1e297e 100644 --- a/build.sbt +++ b/build.sbt @@ -20,7 +20,7 @@ lazy val notJavaTime = crossProject(JSPlatform) moduleName := "not-java-time", libraryDependencies ++= Seq( "io.circe" %%% "circe-core" % "0.12.0-M3" % Test, - "org.scalatest" %%% "scalatest" % "3.0.8" + "org.scalatest" %%% "scalatest" % "3.0.8" % Test ) )