mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-23 05:01:28 +00:00
Makes test work on windows
This commit is contained in:
@@ -44,8 +44,12 @@ public class Aes256CryptorTest {
|
||||
}
|
||||
|
||||
@After
|
||||
public void dropTmpDir() throws IOException {
|
||||
FileUtils.deleteDirectory(tmpDir.toFile());
|
||||
public void dropTmpDir() {
|
||||
try {
|
||||
FileUtils.deleteDirectory(tmpDir.toFile());
|
||||
} catch (IOException e) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------------- */
|
||||
|
||||
Reference in New Issue
Block a user