changed pass criteria for testBoundedCapacityActorPoolWithMailboxPressure to account for more capacity additions

This commit is contained in:
Garrick Evans 2011-02-08 07:22:23 -08:00
parent e2e0abedf8
commit acab31aa15

View file

@ -354,7 +354,7 @@ class RoutingSpec extends junit.framework.TestCase with Suite with MustMatchers
done = latch.await(10,TimeUnit.SECONDS)
done must be (true)
counter.get must be (loops)
(pool !! ActorPool.Stat).asInstanceOf[Option[ActorPool.Stats]].get.size must be (3)
(pool !! ActorPool.Stat).asInstanceOf[Option[ActorPool.Stats]].get.size must be >= (3)
pool stop
}