summaryrefslogtreecommitdiff
path: root/test/engine/test_pool.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2010-03-08 13:04:32 -0800
committerPhilip Jenvey <pjenvey@underboss.org>2010-03-08 13:04:32 -0800
commit649d1f11c3d62ca0fe5024a036afe09a594c40ba (patch)
tree670f43a43a8497f09ceb1361e3f6d5529938633e /test/engine/test_pool.py
parentd9c7d9e0b0b2c6e45c1cdf8fc1c62dd8c25e5336 (diff)
downloadsqlalchemy-649d1f11c3d62ca0fe5024a036afe09a594c40ba.tar.gz
fix last commit
Diffstat (limited to 'test/engine/test_pool.py')
-rw-r--r--test/engine/test_pool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/test_pool.py b/test/engine/test_pool.py
index 0ba716ea3..924f2e8af 100644
--- a/test/engine/test_pool.py
+++ b/test/engine/test_pool.py
@@ -77,7 +77,7 @@ class PoolTest(PoolTestBase):
def test_cursor_iterable(self):
conn = testing.db.raw_connection()
cursor = conn.cursor()
- cursor.execute(select([1], bind=testing.db))
+ cursor.execute(str(select([1], bind=testing.db)))
expected = [(1,)]
for row in cursor:
eq_(row, expected.pop(0))