Update multi-jmv tests for ScalaTest 3.1.0

This commit is contained in:
Mikhail Limansky 2020-01-15 12:13:03 +03:00
parent 3abce05e79
commit 3fccda9f4c
3 changed files with 10 additions and 7 deletions

View file

@ -69,11 +69,13 @@ class StatsSampleSpecMultiJvmNode3 extends StatsSampleSpec
//#abstract-test
import akka.remote.testkit.MultiNodeSpec
import akka.testkit.ImplicitSender
import org.scalatest.{ BeforeAndAfterAll, Matchers, WordSpecLike }
import org.scalatest.BeforeAndAfterAll
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpecLike
abstract class StatsSampleSpec
extends MultiNodeSpec(StatsSampleSpecConfig)
with WordSpecLike
with AnyWordSpecLike
with Matchers
with BeforeAndAfterAll
with ImplicitSender {