We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5213d44 commit d855181Copy full SHA for d855181
2 files changed
jackrabbit-core/src/test/java/org/apache/jackrabbit/core/query/lucene/IndexingQueueTest.java
@@ -150,7 +150,7 @@ public void testReaderUpToDate() throws Exception {
150
try {
151
FileUtil.delete(indexDir);
152
} catch (IOException e) {
153
- fail("Unable to delete index directory");
+ fail("Unable to delete index directory '" + indexDir + "': " + e.getMessage());
154
}
155
156
BlockingParser.unblock();
jackrabbit-data/src/main/java/org/apache/jackrabbit/core/fs/local/FileUtil.java
@@ -93,7 +93,7 @@ public static void delete(File f) throws IOException {
93
94
95
if (!f.delete()) {
96
- throw new IOException("Unable to delete " + f.getPath());
+ throw new IOException("Unable to delete '" + f.getPath() + "'");
97
98
99
0 commit comments