Need to clean the test repository after every test...

git-svn-id: https://svn.apache.org/repos/asf/archiva/branches/moved-repo-servlet@660920 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James William Dumay 2008-05-28 12:28:45 +00:00
parent c38d3b9a5b
commit 4240edb936
1 changed files with 5 additions and 0 deletions

View File

@ -193,6 +193,11 @@ public abstract class AbstractRepositoryServletTestCase
sr.shutDown();
}
if (repoRootInternal.exists())
{
FileUtils.deleteDirectory(repoRootInternal);
}
super.tearDown();
}