This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/master by this push: new 17c0332 Extend mock assertions time 17c0332 is described below commit 17c0332bc75ca78706483b0b02c1254734534b08 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Apr 1 13:34:49 2020 +0200 Extend mock assertions time --- .../src/test/java/org/apache/camel/itest/CamelQuartzJmxUpdateTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/CamelQuartzJmxUpdateTest.java b/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/CamelQuartzJmxUpdateTest.java index 83175d1..b2d52cf 100644 --- a/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/CamelQuartzJmxUpdateTest.java +++ b/tests/camel-itest-osgi/src/test/java/org/apache/camel/itest/CamelQuartzJmxUpdateTest.java @@ -68,7 +68,7 @@ public class CamelQuartzJmxUpdateTest extends AbstractFeatureTest { // test camel MockEndpoint mock = camel.getEndpoint("mock:result", MockEndpoint.class); mock.expectedBodiesReceived("Hello World"); - mock.assertIsSatisfied(5000); + mock.assertIsSatisfied(10000); doUpdateCronDetails(); }