Rename Typed TestKit, #25084

Artifact:
akka-testkit-typed -> akka-actor-testkit-typed

Package:
akka.testkit.typed -> akka.actor.testkit.typed

Config:
akka.typed -> akka.actor.typed
akka.testkit.typed -> akka.actor.testkit.typed
This commit is contained in:
Patrik Nordwall 2018-05-15 19:38:43 +02:00
parent 34bb7fee3c
commit b08d3acb4b
112 changed files with 285 additions and 276 deletions

View file

@ -16,7 +16,7 @@ import scala.concurrent.duration._
//#imports
import akka.actor.typed.{ DispatcherSelector, TypedAkkaSpecWithShutdown }
import akka.stream.testkit.TestSubscriber
import akka.testkit.typed.scaladsl.ActorTestKit
import akka.actor.testkit.typed.scaladsl.ActorTestKit
import scala.collection.immutable
import scala.concurrent.{ Await, Future }

View file

@ -12,7 +12,7 @@ import akka.stream.scaladsl.Keep
import akka.stream.scaladsl.Sink
import akka.stream.scaladsl.Source
import akka.stream.typed.ActorMaterializer
import akka.testkit.typed.scaladsl.{ ActorTestKit, _ }
import akka.actor.testkit.typed.scaladsl.{ ActorTestKit, _ }
object ActorSourceSinkSpec {

View file

@ -11,7 +11,7 @@ import akka.actor.typed.scaladsl.Behaviors
import akka.stream.scaladsl.Sink
import akka.stream.scaladsl.Source
import akka.stream.typed.ActorMaterializer
import akka.testkit.typed.scaladsl.ActorTestKit
import akka.actor.testkit.typed.scaladsl.ActorTestKit
object CustomGuardianAndMaterializerSpec {