mirror of
https://github.com/cryptomator/cryptomator.git
synced 2025-02-10 20:32:56 +00:00
Makes test work on windows
This commit is contained in:
parent
b6546f24d5
commit
470a609938
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------------- */
|
||||
|
Loading…
x
Reference in New Issue
Block a user