diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-07-17 10:11:05 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-07-19 14:45:55 +0200 |
commit | bce4ac97fabc5ea3627c06e24f7a2fab38642514 (patch) | |
tree | a0da1df870018220415624693207db8fae9422dd | |
parent | eda2e95fa8748813cbcfc7b7fbedefb002999cfa (diff) | |
download | jgit-bce4ac97fabc5ea3627c06e24f7a2fab38642514.tar.gz jgit-bce4ac97fabc5ea3627c06e24f7a2fab38642514.zip |
Retry deleting test files in FileBasedConfigTest
Change-Id: I304b2b6f2e39f72f620bba53aead60256aed3660
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/storage/file/FileBasedConfigTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/storage/file/FileBasedConfigTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/storage/file/FileBasedConfigTest.java index 20a76704c0..d3686285e3 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/storage/file/FileBasedConfigTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/storage/file/FileBasedConfigTest.java @@ -89,7 +89,7 @@ public class FileBasedConfigTest { @After public void tearDown() throws Exception { FileUtils.delete(trash.toFile(), - FileUtils.RECURSIVE | FileUtils.SKIP_MISSING); + FileUtils.RECURSIVE | FileUtils.SKIP_MISSING | FileUtils.RETRY); } @Test |