You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2014/05/05 10:06:48 UTC

svn commit: r1592464 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/LuceneSupportPermsTest.java

Author: kahatlen
Date: Mon May  5 08:06:47 2014
New Revision: 1592464

URL: http://svn.apache.org/r1592464
Log:
DERBY-6562: Failed to delete directory in LuceneSupportPermsTest.test_005_deleteDirectory()

The test should look for the "LUCENE" subdirectory rather than the
"lucene" subdirectory.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/LuceneSupportPermsTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/LuceneSupportPermsTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/LuceneSupportPermsTest.java?rev=1592464&r1=1592463&r2=1592464&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/LuceneSupportPermsTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/LuceneSupportPermsTest.java Mon May  5 08:06:47 2014
@@ -498,7 +498,7 @@ public class LuceneSupportPermsTest exte
         String  physicalDBName = config.getPhysicalDatabaseName( dbName );
         String  dbPath = config.getDatabasePath( physicalDBName );
         File    dbDirectory = new File( dbPath );
-        File    luceneDirectory = new File( dbDirectory, "lucene" );
+        File    luceneDirectory = new File( dbDirectory, "LUCENE" );
         File    ruthDirectory = new File( luceneDirectory, "RUTH" );
         File    poemsDirectory = new File( ruthDirectory, "POEMS" );
         File    poemTextIndexDirectory = new File( poemsDirectory, "POEMTEXT" );