Removing legacy comment

This commit is contained in:
Viktor Klang 2011-11-23 19:19:08 +01:00
parent c56341b3a6
commit abcaf01525

View file

@ -58,22 +58,6 @@ class SchedulerSpec extends AkkaSpec with BeforeAndAfterEach {
assert(countDownLatch.getCount == 1)
}
/**
* ticket #372
* FIXME rewrite the test so that registry is not used
*/
// "not create actors" in {
// object Ping
// val ticks = new CountDownLatch(1000)
// val actor = actorOf(new Actor {
// def receive = { case Ping ticks.countDown }
// })
// val numActors = system.registry.local.actors.length
// (1 to 1000).foreach(_ collectFuture(Scheduler.scheduleOnce(actor, Ping, 1, TimeUnit.MILLISECONDS)))
// assert(ticks.await(10, TimeUnit.SECONDS))
// assert(system.registry.local.actors.length === numActors)
// }
/**
* ticket #372
*/