Update to a working version of Scalariform

This commit is contained in:
Björn Antonsson 2016-06-02 14:06:57 +02:00
parent cae070bd93
commit c66ce62d63
616 changed files with 5966 additions and 5436 deletions

View file

@ -28,7 +28,7 @@ object ServiceRegistrySpec extends MultiNodeConfig {
class Service extends Actor {
def receive = {
case s: String sender() ! self.path.name + ": " + s
case s: String => sender() ! self.path.name + ": " + s
}
}

View file

@ -84,7 +84,7 @@ class VotingServiceSpec extends MultiNodeSpec(VotingServiceSpec) with STMultiNod
votingService ! VotingService.CLOSE
}
val expected = (1 to 20).map(n "#" + n -> BigInteger.valueOf(3L * N / 20)).toMap
val expected = (1 to 20).map(n => "#" + n -> BigInteger.valueOf(3L * N / 20)).toMap
awaitAssert {
votingService ! VotingService.GET_VOTES
val votes = expectMsgType[Votes](3.seconds)