Skip to content

Commit 48aa632

Browse files
committed
fix scala 3.2 test
1 parent 07bbcab commit 48aa632

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
dependencies {
22
implementation 'org.scala-lang:scala3-library_3:3.2.0'
33
testImplementation 'org.scalatest:scalatest_3:3.2.14'
4+
testImplementation "org.scalatestplus:junit-4-13_3:3.2.14.0"
45
}

src/crossScalaVersionTest/resources/projects/scala-multi-module-cross-version/3_2/src/test/scala/org/hello/World3_2Suite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package org.hello
22

33
import org.junit.runner.RunWith
4-
import org.scalatest.FunSuite
5-
import org.scalatest.junit.JUnitRunner
4+
import org.scalatest.funsuite.AnyFunSuite
5+
import org.scalatestplus.junit.JUnitRunner
66

77
@RunWith(classOf[JUnitRunner])
8-
class World3_2Suite extends FunSuite {
8+
class World3_2Suite extends AnyFunSuite {
99

1010
test("foo") {
1111
new World3_2().foo()

0 commit comments

Comments
 (0)