Author: sergeyb
Date: Tue Nov 24 09:51:55 2009
New Revision: 883639

URL: http://svn.apache.org/viewvc?rev=883639&view=rev
Log:
Increasing the timeout to 3 secs for JAXRSLoggingAtomPushTest to work better on 
Windows

Modified:
    
cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSLoggingAtomPushTest.java

Modified: 
cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSLoggingAtomPushTest.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSLoggingAtomPushTest.java?rev=883639&r1=883638&r2=883639&view=diff
==============================================================================
--- 
cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSLoggingAtomPushTest.java
 (original)
+++ 
cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSLoggingAtomPushTest.java
 Tue Nov 24 09:51:55 2009
@@ -126,7 +126,7 @@
         configureLogging("resources/logging_atompush.properties");
         logSixEvents(LOG);
         // need to wait: multithreaded and client-server journey
-        Thread.sleep(1000);
+        Thread.sleep(3000);
         assertEquals("Different logged events count;", 6, received.size());
     }
 
@@ -135,7 +135,7 @@
         configureLogging("resources/logging_atompush_batch.properties");
         logSixEvents(LOG);
         // need to wait: multithreaded and client-server journey
-        Thread.sleep(1000);
+        Thread.sleep(3000);
         // 6 events / 3 element batch = 2 feeds expected
         assertEquals("Different logged events count;", 2, received.size());
     }
@@ -150,7 +150,7 @@
         log.setLevel(Level.ALL);
         logSixEvents(log);
         // need to wait: multithreaded and client-server journey
-        Thread.sleep(1000);
+        Thread.sleep(3000);
         // 6 events / 2 element batch = 3 feeds expected
         assertEquals("Different logged events count;", 3, received.size());
     }


Reply via email to