Makes test work on windows

This commit is contained in:
Sebastian Stenzel 2014-12-11 20:07:46 +01:00
parent b6546f24d5
commit 470a609938

View File

@ -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
}
}
/* ------------------------------------------------------------------------------- */