You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ra...@apache.org on 2008/02/18 10:35:41 UTC

svn commit: r628664 - /activemq/trunk/activemq-core/src/test/java/org/apache/activemq/ExclusiveConsumerTest.java

Author: rajdavies
Date: Mon Feb 18 01:35:37 2008
New Revision: 628664

URL: http://svn.apache.org/viewvc?rev=628664&view=rev
Log:
Fix some timing issues with test cases

Modified:
    activemq/trunk/activemq-core/src/test/java/org/apache/activemq/ExclusiveConsumerTest.java

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/ExclusiveConsumerTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/ExclusiveConsumerTest.java?rev=628664&r1=628663&r2=628664&view=diff
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/ExclusiveConsumerTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/ExclusiveConsumerTest.java Mon Feb 18 01:35:37 2008
@@ -235,7 +235,7 @@
             producer.send(msg);
             producer.send(msg);
 
-            Assert.assertNotNull(exclusiveConsumer2.receive(100));
+            Assert.assertNotNull(exclusiveConsumer2.receive(1000));
             Assert.assertNull(fallbackConsumer.receive(100));
 
         } finally {