Skip to content

Commit

Permalink
fix for test pattern list
Browse files Browse the repository at this point in the history
  • Loading branch information
thhart committed Nov 11, 2024
1 parent fc7adf7 commit ea5fce8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public void testListFilesWithDeletionThreaded() throws ExecutionException, Inter
int max = 0;
try {
while (System.currentTimeMillis() < endTime) {
final Collection<File> files = FileUtils.listFiles(tempDir, new String[] { "\\.deletetester" }, false);
final Collection<File> files = FileUtils.listFiles(tempDir, new String[] { ".deletetester" }, false);
assertNotNull(files);
max = Math.max(max, files.size());
}
Expand Down

0 comments on commit ea5fce8

Please sign in to comment.