Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix for test pattern list
  • Loading branch information
thhart committed Nov 11, 2024
commit ea5fce8fce941d968893aabd1cc112bb28dfdf85
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