Remove println in test

This commit is contained in:
Patrik Nordwall 2012-09-11 15:39:48 +02:00
parent c7e2f720df
commit 4031518d46

View file

@ -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),