From 4031518d46c18388f18f383e29b0fc86e1c6f80b Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Tue, 11 Sep 2012 15:39:48 +0200 Subject: [PATCH] Remove println in test --- akka-remote/src/test/scala/akka/remote/RemoteRouterSpec.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/akka-remote/src/test/scala/akka/remote/RemoteRouterSpec.scala b/akka-remote/src/test/scala/akka/remote/RemoteRouterSpec.scala index 8d7effc5d9..2c44ece031 100644 --- a/akka-remote/src/test/scala/akka/remote/RemoteRouterSpec.scala +++ b/akka-remote/src/test/scala/akka/remote/RemoteRouterSpec.scala @@ -201,9 +201,7 @@ akka.actor.deployment { "set supplied supervisorStrategy" in { val escalator = OneForOneStrategy() { - case e ⇒ - println("## " + e) - testActor ! e; SupervisorStrategy.Escalate + case e ⇒ testActor ! e; SupervisorStrategy.Escalate } val router = system.actorOf(Props.empty.withRouter(new RemoteRouterConfig( RoundRobinRouter(1, supervisorStrategy = escalator),