Skip to content

Commit 437d400

Browse files
authored
Update dependency org.scalatest:scalatest to v3.1.0 (#21)
1 parent 1992557 commit 437d400

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ crossSbtVersions := Seq(
3636
)
3737

3838
libraryDependencies ++= Seq(
39-
"org.scalatest" %% "scalatest" % "3.0.0"
39+
"org.scalatest" %% "scalatest" % "3.1.0"
4040
)

src/main/scala/org/scalatest/ScriptedScalaTestSuite.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ trait ScriptedScalaTestSuite extends Suite {
6363
false,
6464
false,
6565
false,
66+
false,
6667
false
6768
)
6869
)

src/sbt-test/sbt-0.13/testFailure/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import com.github.daniel.shuy.sbt.scripted.scalatest.ScriptedScalaTestSuiteMixin
22
import org.scalatest.Assertions._
3-
import org.scalatest.WordSpec
3+
import org.scalatest.wordspec.AnyWordSpec
44

55
lazy val testFailure = project
66
.in(file("."))
@@ -18,7 +18,7 @@ lazy val testFailure = project
1818
scriptedBufferLog := false,
1919

2020
scriptedScalaTestStacks := SbtScriptedScalaTest.FullStacks,
21-
scriptedScalaTestSpec := Some(new WordSpec with ScriptedScalaTestSuiteMixin {
21+
scriptedScalaTestSpec := Some(new AnyWordSpec with ScriptedScalaTestSuiteMixin {
2222
override val sbtState: State = state.value
2323

2424
"scripted" should {

src/sbt-test/sbt-0.13/testFailure/src/sbt-test/basic/simple/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import com.github.daniel.shuy.sbt.scripted.scalatest.ScriptedScalaTestSuiteMixin
22
import org.scalatest.Assertions._
3-
import org.scalatest.WordSpec
3+
import org.scalatest.wordspec.AnyWordSpec
44

55
lazy val testBasicSimple = project
66
.in(file("."))
77
.settings(
88
name := "test/basic/simple",
99

1010
scriptedScalaTestStacks := SbtScriptedScalaTest.FullStacks,
11-
scriptedScalaTestSpec := Some(new WordSpec with ScriptedScalaTestSuiteMixin {
11+
scriptedScalaTestSpec := Some(new AnyWordSpec with ScriptedScalaTestSuiteMixin {
1212
override val sbtState: State = state.value
1313

1414
"scripted test" should {

src/sbt-test/sbt-1.0/testFailure/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import com.github.daniel.shuy.sbt.scripted.scalatest.ScriptedScalaTestSuiteMixin
22
import org.scalatest.Assertions._
3-
import org.scalatest.WordSpec
3+
import org.scalatest.wordspec.AnyWordSpec
44

55
lazy val testFailure = project
66
.in(file("."))
@@ -18,7 +18,7 @@ lazy val testFailure = project
1818
scriptedBufferLog := false,
1919

2020
scriptedScalaTestStacks := SbtScriptedScalaTest.FullStacks,
21-
scriptedScalaTestSpec := Some(new WordSpec with ScriptedScalaTestSuiteMixin {
21+
scriptedScalaTestSpec := Some(new AnyWordSpec with ScriptedScalaTestSuiteMixin {
2222
override val sbtState: State = state.value
2323

2424
"scripted" should {

src/sbt-test/sbt-1.0/testFailure/src/sbt-test/basic/simple/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import com.github.daniel.shuy.sbt.scripted.scalatest.ScriptedScalaTestSuiteMixin
22
import org.scalatest.Assertions._
3-
import org.scalatest.WordSpec
3+
import org.scalatest.wordspec.AnyWordSpec
44

55
lazy val testBasicSimple = project
66
.in(file("."))
77
.settings(
88
name := "test/basic/simple",
99

1010
scriptedScalaTestStacks := SbtScriptedScalaTest.FullStacks,
11-
scriptedScalaTestSpec := Some(new WordSpec with ScriptedScalaTestSuiteMixin {
11+
scriptedScalaTestSpec := Some(new AnyWordSpec with ScriptedScalaTestSuiteMixin {
1212
override val sbtState: State = state.value
1313

1414
"scripted test" should {

0 commit comments

Comments
 (0)