Skip to content

Commit 6979d1a

Browse files
authored
Removed wrong escape (#700)
* [IO-856] test for background deletion * [IO-856] test for background deletion * fix for test pattern list
1 parent 0b9c657 commit 6979d1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/io/FileUtilsListFilesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public void testListFilesWithDeletionThreaded() throws ExecutionException, Inter
271271
int max = 0;
272272
try {
273273
while (System.currentTimeMillis() < endTime) {
274-
final Collection<File> files = FileUtils.listFiles(tempDir, new String[] { "\\.deletetester" }, false);
274+
final Collection<File> files = FileUtils.listFiles(tempDir, new String[] { ".deletetester" }, false);
275275
assertNotNull(files);
276276
max = Math.max(max, files.size());
277277
}

0 commit comments

Comments
 (0)