We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78c8c69 commit f9a9ecfCopy full SHA for f9a9ecf
modules/core-test-module/src/main/java/testutil/SecureTestDataHelper.java
@@ -48,7 +48,8 @@ private static Properties accessSecureTestData()
48
private static void cleanupSecureTestData() {
49
final File file = new File(RESOURCES + "/secure-testdata/legacy-signed-enveloped-email");
50
51
- while (file.exists()) {
+ int tries = 0;
52
+ while (file.exists() && tries++ <= 10) {
53
try {
54
FileUtils.deleteDirectory(file);
55
} catch (IOException e) {
0 commit comments