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 kr...@apache.org on 2011/09/19 08:31:40 UTC

svn commit: r1172482 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/BaseJDBCTestCase.java

Author: kristwaa
Date: Mon Sep 19 06:31:40 2011
New Revision: 1172482

URL: http://svn.apache.org/viewvc?rev=1172482&view=rev
Log:
Added missing closing parenthesis.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/BaseJDBCTestCase.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/BaseJDBCTestCase.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/BaseJDBCTestCase.java?rev=1172482&r1=1172481&r2=1172482&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/BaseJDBCTestCase.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/BaseJDBCTestCase.java Mon Sep 19 06:31:40 2011
@@ -1524,7 +1524,7 @@ public abstract class BaseJDBCTestCase
         }
         sb.deleteCharAt(sb.length() -1).deleteCharAt(sb.length() -1);
         fail("Failed to delete " + fl.length + " files (root=" +
-                PrivilegedFileOpsForTests.getAbsolutePath(dir) + ": " +
+                PrivilegedFileOpsForTests.getAbsolutePath(dir) + "): " +
                 sb.toString());
     }
 } // End class BaseJDBCTestCase