=all #3448 Newer Scalariform running on more files

This commit is contained in:
Björn Antonsson 2013-10-23 16:51:59 +02:00
parent b9f91b176b
commit 28b5f1039d
22 changed files with 63 additions and 48 deletions

View file

@ -17,7 +17,7 @@ object MultiNodeSampleConfig extends MultiNodeConfig {
//#spec
import akka.remote.testkit.MultiNodeSpec
import akka.testkit.ImplicitSender
import akka.actor.{Props, Actor}
import akka.actor.{ Props, Actor }
class MultiNodeSampleSpecMultiJvmNode1 extends MultiNodeSample
class MultiNodeSampleSpecMultiJvmNode2 extends MultiNodeSample
@ -46,7 +46,7 @@ class MultiNodeSample extends MultiNodeSpec(MultiNodeSampleConfig)
runOn(node2) {
system.actorOf(Props(new Actor {
def receive = {
case "ping" => sender ! "pong"
case "ping" sender ! "pong"
}
}), "ponger")
enterBarrier("deployed")