File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
src/main/scala/scalatutorial/sections Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ lazy val `scala-tutorial` = (project in file("."))
1414 %% (" shapeless" , V .shapeless),
1515 %% (" scalatest" , V .scalatest),
1616 %% (" scalacheck" , V .scalacheck),
17- " com.github.alexarchambault" %% " scalacheck-shapeless_1.14" % V .scalacheckShapeless
17+ " com.github.alexarchambault" %% " scalacheck-shapeless_1.14" % V .scalacheckShapeless,
18+ " org.scalatestplus" %% " scalatestplus-scalacheck" % V .scalatestplusScheck
1819 )
1920 )
2021
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ object ProjectPlugin extends AutoPlugin {
1717 lazy val V = new {
1818 val scala212 : String = " 2.12.10"
1919 val shapeless : String = " 2.3.3"
20- val scalatest : String = " 3.0.8"
20+ val scalatest : String = " 3.1.0"
21+ val scalatestplusScheck : String = " 3.1.0.0-RC2"
2122 val scalacheck : String = " 1.14.2"
2223 val scalacheckShapeless : String = " 1.2.3"
2324 }
Original file line number Diff line number Diff line change 77package scalatutorial .sections
88
99import org .scalaexercises .definitions .Section
10- import org .scalatest .{FlatSpec , Matchers }
10+ import org .scalatest .flatspec .AnyFlatSpec
11+ import org .scalatest .matchers .should .Matchers
1112
12- trait ScalaTutorialSection extends FlatSpec with Matchers with Section
13+ trait ScalaTutorialSection extends AnyFlatSpec with Matchers with Section
You can’t perform that action at this time.
0 commit comments