From 3ce3f270dfce5da7aa5b6270b0559e2c3c0fff6f Mon Sep 17 00:00:00 2001 From: RayRoestenburg Date: Mon, 26 Mar 2012 22:12:22 +0200 Subject: [PATCH] made the timeout longer (from 30ms to 200 ms) on in-only test of ActorProducerTest so it also works on a slow box --- .../scala/akka/camel/internal/component/ActorProducerTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-camel/src/test/scala/akka/camel/internal/component/ActorProducerTest.scala b/akka-camel/src/test/scala/akka/camel/internal/component/ActorProducerTest.scala index 6199aaa7c6..0ff385c91c 100644 --- a/akka-camel/src/test/scala/akka/camel/internal/component/ActorProducerTest.scala +++ b/akka-camel/src/test/scala/akka/camel/internal/component/ActorProducerTest.scala @@ -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) } }