From 649d1f11c3d62ca0fe5024a036afe09a594c40ba Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Mon, 8 Mar 2010 13:04:32 -0800 Subject: [PATCH] fix last commit --- test/engine/test_pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/engine/test_pool.py b/test/engine/test_pool.py index 0ba716ea3f..924f2e8afd 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)) -- 2.47.3