You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2008/04/08 11:01:57 UTC

svn commit: r645800 - /commons/proper/collections/trunk/src/test/org/apache/commons/collections/buffer/TestBlockingBuffer.java

Author: niallp
Date: Tue Apr  8 02:01:52 2008
New Revision: 645800

URL: http://svn.apache.org/viewvc?rev=645800&view=rev
Log:
Try to fix JDK 1.6 gump instance failure by increasing the delay - testBlockedRemoveWithAddAll2 failed with the message "Both objects were removed expected:<0> but was:<1>"

see http://gump.zones.apache.org/gump/test/apache-commons/commons-collections/gump_work/build_apache-commons_commons-collections.html

Modified:
    commons/proper/collections/trunk/src/test/org/apache/commons/collections/buffer/TestBlockingBuffer.java

Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/buffer/TestBlockingBuffer.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/buffer/TestBlockingBuffer.java?rev=645800&r1=645799&r2=645800&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/org/apache/commons/collections/buffer/TestBlockingBuffer.java (original)
+++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/buffer/TestBlockingBuffer.java Tue Apr  8 02:01:52 2008
@@ -549,7 +549,7 @@
 
     private void delay() {
         try {
-            Thread.sleep( 100 );
+            Thread.sleep( 200 );
         }
         catch( InterruptedException e ) {
         }