made the timeout longer (from 30ms to 200 ms) on in-only test of ActorProducerTest so it also works on a slow box

This commit is contained in:
RayRoestenburg 2012-03-26 22:12:22 +02:00
parent 2127eb8926
commit 3ce3f270df

View file

@ -46,7 +46,7 @@ class ActorProducerTest extends TestKit(ActorSystem("test")) with WordSpec with
}
"not expect response and not block" in {
time(producer.processExchangeAdapter(exchange)) must be < (30 millis)
time(producer.processExchangeAdapter(exchange)) must be < (200 millis)
}
}