Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
voj committed Mar 4, 2024
1 parent 9ea4f84 commit 36f5c48
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ public static void tearDown() throws IOException {

for (File folder : tmp_folders) {
File[] files = folder.listFiles();
for (File f : files) {
f.delete();
}
if (files != null) {
for (File f : files) {
f.delete();
}
}
Files.deleteIfExists(folder.toPath());
}
}
Expand Down

0 comments on commit 36f5c48

Please sign in to comment.