You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2013/06/16 11:35:18 UTC

svn commit: r1493481 - /jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/api/TestQueryExecutionTimeout1.java

Author: andy
Date: Sun Jun 16 09:35:18 2013
New Revision: 1493481

URL: http://svn.apache.org/r1493481
Log:
Tweak timeout test

Modified:
    jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/api/TestQueryExecutionTimeout1.java

Modified: jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/api/TestQueryExecutionTimeout1.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/api/TestQueryExecutionTimeout1.java?rev=1493481&r1=1493480&r2=1493481&view=diff
==============================================================================
--- jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/api/TestQueryExecutionTimeout1.java (original)
+++ jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/api/TestQueryExecutionTimeout1.java Sun Jun 16 09:35:18 2013
@@ -66,7 +66,7 @@ public class TestQueryExecutionTimeout1 
         "PREFIX f:       <http://example/ns#>\n"+
         "PREFIX afn:     <http://jena.hpl.hp.com/ARQ/function#>\n" ;
 
-    // Numbers all a bit iffy aand can result in test failures
+    // Numbers all a bit iffy and can result in test failures
     // on a heavily loaded CI system.
     // But we don't want testing to be to slow when used in general
     // development.  Could split into development and integration
@@ -79,7 +79,7 @@ public class TestQueryExecutionTimeout1 
         QueryExecution qExec = QueryExecutionFactory.create(qs, ds) ;
         qExec.setTimeout(50, TimeUnit.MILLISECONDS) ;
         ResultSet rs = qExec.execSelect() ;
-        sleep(100) ;
+        sleep(120) ;
         exceptionExpected(rs) ; 
     }