summaryrefslogtreecommitdiff
path: root/test/engine/test_pool.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2010-01-26 23:23:13 +0000
committerPhilip Jenvey <pjenvey@underboss.org>2010-01-26 23:23:13 +0000
commitff09d5709df8c022d264a227d7505b6eb884e6cc (patch)
treebb110e7a94c15573bceea523ee362002e9a97189 /test/engine/test_pool.py
parent8d22a984be7b84b6afad09fb8013c08ad3aad8c8 (diff)
downloadsqlalchemy-ff09d5709df8c022d264a227d7505b6eb884e6cc.tar.gz
missing import, forcefully compile the expression to str
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 8af646a3b..53a7e40e9 100644
--- a/test/engine/test_pool.py
+++ b/test/engine/test_pool.py
@@ -76,7 +76,7 @@ class PoolTest(PoolTestBase):
def test_cursor_iterable(self):
conn = testing.db.raw_connection()
cursor = conn.cursor()
- cursor.execute(select([1]).compile(testing.db))
+ cursor.execute(str(select([1]).compile(testing.db)))
expected = [(1,)]
for row in cursor:
eq_(row, expected.pop(0))