test should call super.tearDown() for cleanup

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1027670 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-10-26 18:25:42 +00:00
parent 8813afb4b4
commit 226c4731c5
1 changed files with 2 additions and 1 deletions

View File

@ -35,9 +35,10 @@ public class TestStringId extends AbstractPersistenceTestCase {
}
@Override
public void tearDown() {
public void tearDown() throws Exception {
closeEMF(_emf);
_emf = null;
super.tearDown();
}
private void cleanup() {