From: Mike Bayer Date: Sat, 27 Jan 2007 01:08:39 +0000 (+0000) Subject: added a close() to the single SQL execute, useful for testing pool behavior with... X-Git-Tag: rel_0_3_5~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38aa219a69a341f033dd1c3981ee1cae4ddd7119;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git added a close() to the single SQL execute, useful for testing pool behavior with the ORM --- diff --git a/test/orm/polymorph.py b/test/orm/polymorph.py index 5cac1d0ab1..2c66fc7fc5 100644 --- a/test/orm/polymorph.py +++ b/test/orm/polymorph.py @@ -66,7 +66,7 @@ class MultipleTableTest(testbase.PersistTest): def tearDown(self): clear_mappers() for t in metadata.table_iterator(reverse=True): - t.delete().execute() + t.delete().execute().close() def test_f_f_f(self): self.do_test(False, False, False)