]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
these are unnecessary
authorPhilip Jenvey <pjenvey@underboss.org>
Thu, 23 Jul 2009 04:58:06 +0000 (04:58 +0000)
committerPhilip Jenvey <pjenvey@underboss.org>
Thu, 23 Jul 2009 04:58:06 +0000 (04:58 +0000)
test/dialect/test_mysql.py

index 47746aeb804ac59b7a24376e2a1b6009d5ea1172..d8b47aff1902ab2f8a949e46806047b28cd35228 100644 (file)
@@ -317,7 +317,7 @@ class TypesTest(TestBase, AssertsExecutionResults):
 
                 def roundtrip(store, expected=None):
                     expected = expected or store
-                    table.insert(store).execute().close()
+                    table.insert(store).execute()
                     row = table.select().execute().first()
                     try:
                         self.assert_(list(row) == expected)
@@ -367,7 +367,7 @@ class TypesTest(TestBase, AssertsExecutionResults):
             table = bool_table
             def roundtrip(store, expected=None):
                 expected = expected or store
-                table.insert(store).execute().close()
+                table.insert(store).execute()
                 row = table.select().execute().first()
                 try:
                     self.assert_(list(row) == expected)