You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2013/04/02 01:45:34 UTC

svn commit: r1463336 - /jena/trunk/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/store/AbstractStoreConnections.java

Author: rvesse
Date: Mon Apr  1 23:45:34 2013
New Revision: 1463336

URL: http://svn.apache.org/r1463336
Log:
Make a TDB test error message more descriptive

Modified:
    jena/trunk/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/store/AbstractStoreConnections.java

Modified: jena/trunk/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/store/AbstractStoreConnections.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/store/AbstractStoreConnections.java?rev=1463336&r1=1463335&r2=1463336&view=diff
==============================================================================
--- jena/trunk/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/store/AbstractStoreConnections.java (original)
+++ jena/trunk/jena-tdb/src/test/java/com/hp/hpl/jena/tdb/store/AbstractStoreConnections.java Mon Apr  1 23:45:34 2013
@@ -69,7 +69,7 @@ public abstract class AbstractStoreConne
         
         File d = new File(DIR) ;
         if ( d.list().length > 2 )  // . and ..
-            throw new RuntimeException("not empty") ;
+            throw new RuntimeException("Unable to clean up existing test directory contents") ;
     }
 
     @After public void after() {}