diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/com/iciql/test/ForeignKeyTest.java | 3 |
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();
}
|