From 6723c6cc590bf53ae38d749c75c24dfd8f818946 Mon Sep 17 00:00:00 2001 From: Mikhail Limansky Date: Mon, 13 Jan 2020 12:40:06 +0300 Subject: [PATCH] Fix test compilation issue in akka-cluster-typed --- .../receptionist/ClusterReceptionistStateSpec.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/akka-cluster-typed/src/test/scala/akka/cluster/typed/internal/receptionist/ClusterReceptionistStateSpec.scala b/akka-cluster-typed/src/test/scala/akka/cluster/typed/internal/receptionist/ClusterReceptionistStateSpec.scala index aef11096f7..7e524d7734 100644 --- a/akka-cluster-typed/src/test/scala/akka/cluster/typed/internal/receptionist/ClusterReceptionistStateSpec.scala +++ b/akka-cluster-typed/src/test/scala/akka/cluster/typed/internal/receptionist/ClusterReceptionistStateSpec.scala @@ -11,13 +11,13 @@ import akka.actor.typed.receptionist.ServiceKey import akka.cluster.UniqueAddress import akka.cluster.typed.internal.receptionist.ClusterReceptionist.SubscriptionsKV import akka.util.TypedMultiMap -import org.scalatest.Matchers -import org.scalatest.WordSpecLike +import org.scalatest.matchers.should.Matchers +import org.scalatest.wordspec.AnyWordSpecLike import scala.concurrent.duration.Deadline import scala.concurrent.duration._ -class ClusterReceptionistStateSpec extends ScalaTestWithActorTestKit with WordSpecLike with Matchers { +class ClusterReceptionistStateSpec extends ScalaTestWithActorTestKit with AnyWordSpecLike with Matchers { val SomeService = ServiceKey[Int]("boy-oh-boy!") val SomeOtherService = ServiceKey[Int]("disappointing!")