=all #3837 Make akkaScalaNightly compile on scala 2.11.0-M8
This commit is contained in:
parent
85698688e4
commit
179faba453
82 changed files with 651 additions and 643 deletions
|
|
@ -89,7 +89,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val children = replies.toSet
|
||||
children should have size 2
|
||||
children.map(_.parent) should have size 1
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
@ -104,7 +104,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val children = replies.toSet
|
||||
children should have size 2
|
||||
children.map(_.parent) should have size 1
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
@ -118,7 +118,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val children = replies.toSet
|
||||
children.size should be >= 2
|
||||
children.map(_.parent) should have size 1
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
@ -135,7 +135,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val parents = children.map(_.parent)
|
||||
parents should have size 1
|
||||
parents.head should be(router.path)
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
@ -153,7 +153,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val parents = children.map(_.parent)
|
||||
parents should have size 1
|
||||
parents.head should be(router.path)
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
@ -171,7 +171,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val parents = children.map(_.parent)
|
||||
parents should have size 1
|
||||
parents.head.address should be(Address("akka.tcp", sysName, "localhost", port))
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
@ -189,7 +189,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val parents = children.map(_.parent)
|
||||
parents should have size 1
|
||||
parents.head should be(router.path)
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
@ -207,7 +207,7 @@ class RemoteRouterSpec extends AkkaSpec("""
|
|||
val parents = children.map(_.parent)
|
||||
parents should have size 1
|
||||
parents.head should be(router.path)
|
||||
children foreach (_.address.toString should equal(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
children foreach (_.address.toString should be(s"akka.tcp://${sysName}@localhost:${port}"))
|
||||
masterSystem.stop(router)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue