You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2013/12/02 09:20:31 UTC

[2/6] git commit: Fixed test

Fixed test


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/102843f0
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/102843f0
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/102843f0

Branch: refs/heads/master
Commit: 102843f024ebb120e6e31c0046b6fbc5c37fb9a3
Parents: 635356a
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Dec 2 09:19:59 2013 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Dec 2 09:19:59 2013 +0100

----------------------------------------------------------------------
 .../testng/AbstractCamelTestNGSpringContextTestsPlainTest.java  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/102843f0/components/camel-testng/src/test/java/org/apache/camel/testng/AbstractCamelTestNGSpringContextTestsPlainTest.java
----------------------------------------------------------------------
diff --git a/components/camel-testng/src/test/java/org/apache/camel/testng/AbstractCamelTestNGSpringContextTestsPlainTest.java b/components/camel-testng/src/test/java/org/apache/camel/testng/AbstractCamelTestNGSpringContextTestsPlainTest.java
index 1984450..d1aa63d 100644
--- a/components/camel-testng/src/test/java/org/apache/camel/testng/AbstractCamelTestNGSpringContextTestsPlainTest.java
+++ b/components/camel-testng/src/test/java/org/apache/camel/testng/AbstractCamelTestNGSpringContextTestsPlainTest.java
@@ -102,9 +102,10 @@ public class AbstractCamelTestNGSpringContextTestsPlainTest
     @Test
     public void testStopwatch() {
         StopWatch stopWatch = StopWatchTestExecutionListener.getStopWatch();
-        
+
+        // some servers is slower
         assertNotNull(stopWatch);
-        assertTrue(stopWatch.taken() < 100);
+        assertTrue(stopWatch.taken() < 1000);
     }
     
     @Test