aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2012-10-15 10:56:27 -0400
committerJames Moger <james.moger@gmail.com>2012-10-15 10:56:27 -0400
commitef95be59dbd124ee07d195ef3706e1daaa25f768 (patch)
tree1a5d4382f202d8ecd8035751456df5ae7a30d9d7
parent75b3c1c1cf2203940634168e5a618b3d276fc325 (diff)
downloadiciql-ef95be59dbd124ee07d195ef3706e1daaa25f768.tar.gz
iciql-ef95be59dbd124ee07d195ef3706e1daaa25f768.zip
Cleanup tables after test
-rw-r--r--tests/com/iciql/test/ForeignKeyTest.java3
1 files changed, 3 insertions, 0 deletions
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();
}