summaryrefslogtreecommitdiff
path: root/test/files/jvm/actmig-public-methods_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/actmig-public-methods_1.scala')
-rw-r--r--test/files/jvm/actmig-public-methods_1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/jvm/actmig-public-methods_1.scala b/test/files/jvm/actmig-public-methods_1.scala
index 15516a5d51..db21ab983c 100644
--- a/test/files/jvm/actmig-public-methods_1.scala
+++ b/test/files/jvm/actmig-public-methods_1.scala
@@ -28,7 +28,7 @@ object Test {
def main(args: Array[String]) = {
- val respActor = MigrationSystem.actorOf(Props(() => actor {
+ val respActor = ActorDSL.actor(actor {
loop {
react {
case (x: String, time: Long) =>
@@ -41,7 +41,7 @@ object Test {
exit()
}
}
- }, "akka.actor.default-stash-dispatcher"))
+ })
toStop += respActor