From 3708efc79af076193fe2178c61d0b6cd886f9840 Mon Sep 17 00:00:00 2001 From: Markus Voge Date: Wed, 15 Aug 2018 10:31:53 +0200 Subject: [PATCH] Update testing-scala-with-sbt-on-the-command-line.md --- .../testing-scala-with-sbt-on-the-command-line.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.md b/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.md index 16020bd601..388f76a1de 100644 --- a/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.md +++ b/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.md @@ -16,7 +16,7 @@ We assume you know [how to create a Scala project with sbt](getting-started-with 1. Name the project `ScalaTestTutorial`. 1. The project comes with ScalaTest as a dependency in the `build.sbt` file. 1. `cd` into the directory and run `sbt test`. This will run the test suite -`CubeCalculatorTest` with a single test called `CubeCalculatorTest.cube`. +`CubeCalculatorTest` with a single test called `CubeCalculator.cube`. ``` sbt test