Fix Scala 2.12 compile of akka-persistence-tck (#31094)
This commit is contained in:
parent
84c19321e6
commit
03886e28b6
2 changed files with 6 additions and 2 deletions
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
package akka.persistence.japi.journal
|
||||
|
||||
import scala.collection.immutable
|
||||
|
||||
import com.typesafe.config.Config
|
||||
import akka.persistence.CapabilityFlag
|
||||
import akka.persistence.journal.JournalSpec
|
||||
|
|
@ -59,6 +61,6 @@ class JavaJournalSpec(config: Config) extends JournalSpec(config) {
|
|||
override def runNestedSuites(args: Args): Status =
|
||||
super.runNestedSuites(args)
|
||||
|
||||
override def nestedSuites: IndexedSeq[Suite] =
|
||||
override def nestedSuites: immutable.IndexedSeq[Suite] =
|
||||
super.nestedSuites
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
package akka.persistence.japi.snapshot
|
||||
|
||||
import scala.collection.immutable
|
||||
|
||||
import com.typesafe.config.Config
|
||||
import akka.persistence.CapabilityFlag
|
||||
import akka.persistence.snapshot.SnapshotStoreSpec
|
||||
|
|
@ -56,6 +58,6 @@ class JavaSnapshotStoreSpec(config: Config) extends SnapshotStoreSpec(config) {
|
|||
override def runNestedSuites(args: Args): Status =
|
||||
super.runNestedSuites(args)
|
||||
|
||||
override def nestedSuites: IndexedSeq[Suite] =
|
||||
override def nestedSuites: immutable.IndexedSeq[Suite] =
|
||||
super.nestedSuites
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue