From 293de8e1eec8c15c2937e02efbe829a304925a65 Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Thu, 23 Jul 2009 04:58:06 +0000 Subject: [PATCH] these are unnecessary --- test/dialect/test_mysql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dialect/test_mysql.py b/test/dialect/test_mysql.py index 47746aeb80..d8b47aff19 100644 --- a/test/dialect/test_mysql.py +++ b/test/dialect/test_mysql.py @@ -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) -- 2.47.3