From 2e3451a5b9bfc8a9da8aad79ca65ce7c93a8a9e4 Mon Sep 17 00:00:00 2001 From: Andrey Serov <42320563+zmej-serow@users.noreply.github.com> Date: Sun, 25 Aug 2019 16:25:05 +0200 Subject: [PATCH 1/2] Updated libraryDependencies config line --- .../intellij-track/testing-scala-in-intellij-with-scalatest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md b/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md index 9d7cb2786b..ac83ee4135 100644 --- a/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md +++ b/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md @@ -20,7 +20,7 @@ This assumes you know [how to build a project in IntelliJ](building-a-scala-proj 1. Add the ScalaTest dependency: 1. Add the ScalaTest dependency to your `build.sbt` file: ``` - libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test" + libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" ``` 1. If you get a notification "build.sbt was changed", select **auto-import**. 1. These two actions will cause `sbt` to download the ScalaTest library. From 7014e04bfacce2f351ccb35e05c957198d3042cb Mon Sep 17 00:00:00 2001 From: Andrey Serov <42320563+zmej-serow@users.noreply.github.com> Date: Sun, 25 Aug 2019 18:19:00 +0200 Subject: [PATCH 2/2] Update testing-scala-in-intellij-with-scalatest.md --- .../intellij-track/testing-scala-in-intellij-with-scalatest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md b/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md index ac83ee4135..8c89a532ae 100644 --- a/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md +++ b/_getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md @@ -20,7 +20,7 @@ This assumes you know [how to build a project in IntelliJ](building-a-scala-proj 1. Add the ScalaTest dependency: 1. Add the ScalaTest dependency to your `build.sbt` file: ``` - libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" + libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "test" ``` 1. If you get a notification "build.sbt was changed", select **auto-import**. 1. These two actions will cause `sbt` to download the ScalaTest library.