fix SchedulerSpec config, see #2941

This commit is contained in:
Roland 2013-01-24 16:13:06 +01:00
parent 2df179ab49
commit b6ad46e88c

View file

@ -20,12 +20,12 @@ import akka.testkit._
object SchedulerSpec {
val testConf = ConfigFactory.parseString("""
akka.scheduler.class = akka.actor.DefaultScheduler
akka.scheduler.implementation = akka.actor.DefaultScheduler
akka.scheduler.ticks-per-wheel = 32
""").withFallback(AkkaSpec.testConf)
val testConfRevolver = ConfigFactory.parseString("""
akka.scheduler.class = akka.actor.LightArrayRevolverScheduler
akka.scheduler.implementation = akka.actor.LightArrayRevolverScheduler
""").withFallback(testConf)
}