Skip to content

Commit 77481a7

Browse files
authored
Merge pull request #2507 from tockrock/patch-1
Fix import that changed with the update to scalatest 3.2.11
2 parents 46ab087 + 311e5d5 commit 77481a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_overviews/scala-book/sbt-scalatest-bdd.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Next, create a file named *MathUtilsTests.scala* in the *src/test/scala/simplete
4545
```scala
4646
package simpletest
4747

48-
import org.scalatest.FunSpec
48+
import org.scalatest.funspec.AnyFunSpec
4949

50-
class MathUtilsSpec extends FunSpec {
50+
class MathUtilsSpec extends AnyFunSpec {
5151

5252
describe("MathUtils::double") {
5353

0 commit comments

Comments
 (0)