Update to ScalaTest 3.1.0, fix #28289.

This commit is contained in:
Mike Limansky 2020-01-11 15:14:21 +03:00
parent 4749b11be8
commit d9ed927df0
305 changed files with 702 additions and 656 deletions

View file

@ -12,8 +12,8 @@ import akka.testkit.ImplicitSender
import akka.testkit.TestKit
import com.typesafe.config.ConfigFactory
import org.scalatest.BeforeAndAfterAll
import org.scalatest.Matchers
import org.scalatest.WordSpecLike
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpecLike
object LocalConcurrencySpec {
@ -39,7 +39,7 @@ object LocalConcurrencySpec {
class LocalConcurrencySpec(_system: ActorSystem)
extends TestKit(_system)
with WordSpecLike
with AnyWordSpecLike
with Matchers
with BeforeAndAfterAll
with ImplicitSender {