Skip to content

Commit 0cbe593

Browse files
committed
Made the source code to build with scalatest 3.3.0-alpha.1 and testng 7.5 (for JDK 8).
1 parent 36cc4fe commit 0cbe593

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "testng-7.5"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.17.0"
8+
version := "3.3.0.0-alpha.1"
99

1010
homepage := Some(url("https://github.com/scalatest/scalatestplus-testng"))
1111

@@ -26,15 +26,15 @@ developers := List(
2626
)
2727
)
2828

29-
scalaVersion := "2.13.11"
29+
scalaVersion := "2.13.12"
3030

31-
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.17", "2.13.11", "3.1.3")
31+
crossScalaVersions := List("2.11.12", "2.12.18", "2.13.12", "3.3.1")
3232

3333
libraryDependencies ++= Seq(
34-
"org.scalatest" %% "scalatest-core" % "3.2.17",
34+
"org.scalatest" %% "scalatest-core" % "3.3.0-alpha.1",
3535
"org.testng" % "testng" % "7.5",
3636
"commons-io" % "commons-io" % "1.3.2" % "test",
37-
"org.scalatest" %% "scalatest-funsuite" % "3.2.17" % "test"
37+
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-alpha.1" % "test"
3838
)
3939

4040
Compile / packageDoc / publishArtifact := !scalaBinaryVersion.value.startsWith("3")

src/main/scala/org/scalatestplus/testng/TestNGSuiteLike.scala

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -464,9 +464,4 @@ trait TestNGSuiteLike extends Suite { thisSuite =>
464464
override protected final def runTest(testName: String, args: Args): Status = {
465465
throw new UnsupportedOperationException
466466
}
467-
468-
/**
469-
* Suite style name.
470-
*/
471-
final override val styleName: String = "TestNGSuite"
472467
}

0 commit comments

Comments
 (0)