Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EB2BE10640 for ; Mon, 24 Feb 2014 16:05:16 +0000 (UTC) Received: (qmail 18192 invoked by uid 500); 24 Feb 2014 16:04:53 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 17918 invoked by uid 500); 24 Feb 2014 16:04:49 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 17624 invoked by uid 99); 24 Feb 2014 16:04:44 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Feb 2014 16:04:44 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1491C90333D; Mon, 24 Feb 2014 16:04:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Mon, 24 Feb 2014 16:04:53 -0000 Message-Id: <8e9c186fdad2418fb4e24c338297ad4e@git.apache.org> In-Reply-To: <9b19143ec9484f6cb3b0324410e8ee7d@git.apache.org> References: <9b19143ec9484f6cb3b0324410e8ee7d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/18] git commit: Fixed test on slower CI boxes Fixed test on slower CI boxes Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c744dc63 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c744dc63 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c744dc63 Branch: refs/heads/camel-2.12.x Commit: c744dc63250ff8f1eeee0dc4b97ae08294f2d4d9 Parents: 6de2fba Author: Claus Ibsen Authored: Mon Feb 24 15:12:35 2014 +0100 Committer: Claus Ibsen Committed: Mon Feb 24 17:05:40 2014 +0100 ---------------------------------------------------------------------- .../camel/util/toolbox/FlexibleAggregationStrategiesTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c744dc63/camel-core/src/test/java/org/apache/camel/util/toolbox/FlexibleAggregationStrategiesTest.java ---------------------------------------------------------------------- diff --git a/camel-core/src/test/java/org/apache/camel/util/toolbox/FlexibleAggregationStrategiesTest.java b/camel-core/src/test/java/org/apache/camel/util/toolbox/FlexibleAggregationStrategiesTest.java index be2dfad..8e45751 100644 --- a/camel-core/src/test/java/org/apache/camel/util/toolbox/FlexibleAggregationStrategiesTest.java +++ b/camel-core/src/test/java/org/apache/camel/util/toolbox/FlexibleAggregationStrategiesTest.java @@ -173,12 +173,12 @@ public class FlexibleAggregationStrategiesTest extends ContextTestSupport { template.sendBody("direct:start.timeoutAndCompletionAware", "AGGREGATE1"); - assertTrue(timeoutLatch.await(1200, TimeUnit.MILLISECONDS)); + assertTrue(timeoutLatch.await(2500, TimeUnit.MILLISECONDS)); template.sendBody("direct:start.timeoutAndCompletionAware", "AGGREGATE2"); template.sendBody("direct:start.timeoutAndCompletionAware", "AGGREGATE3"); - assertTrue(completionLatch.await(1200, TimeUnit.MILLISECONDS)); + assertTrue(completionLatch.await(2500, TimeUnit.MILLISECONDS)); getMockEndpoint("mock:result.timeoutAndCompletionAware").getReceivedExchanges(); assertMockEndpointsSatisfied();