From: James Moger Date: Mon, 15 Oct 2012 14:56:27 +0000 (-0400) Subject: Cleanup tables after test X-Git-Tag: v1.2.0~19 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ef95be59dbd124ee07d195ef3706e1daaa25f768;p=iciql.git Cleanup tables after test --- diff --git a/tests/com/iciql/test/ForeignKeyTest.java b/tests/com/iciql/test/ForeignKeyTest.java index 0941516..3e0314c 100644 --- a/tests/com/iciql/test/ForeignKeyTest.java +++ b/tests/com/iciql/test/ForeignKeyTest.java @@ -1,5 +1,6 @@ /* * Copyright 2012 Frédéric Gaillard. + * Copyright 2012 James Moger. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -43,6 +44,8 @@ public class ForeignKeyTest { @After public void tearDown() { + db.dropTable(ProductAnnotationOnlyWithForeignKey.class); + db.dropTable(CategoryAnnotationOnly.class); db.close(); }