]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
added addresses table delete
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 26 Jul 2007 17:47:16 +0000 (17:47 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 26 Jul 2007 17:47:16 +0000 (17:47 +0000)
test/sql/query.py

index 487db63f90dbaaca965d865fa65438f8d26dc5c6..bfad2c26715c27bfd6112023dbdb4b1d0712d8af 100644 (file)
@@ -21,6 +21,7 @@ class QueryTest(PersistTest):
         metadata.create_all()
     
     def tearDown(self):
+        addresses.delete().execute()
         users.delete().execute()
     
     def tearDownAll(self):