From: Philip Jenvey Date: Mon, 8 Mar 2010 21:04:32 +0000 (-0800) Subject: fix last commit X-Git-Tag: rel_0_6beta2~62^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=649d1f11c3d62ca0fe5024a036afe09a594c40ba;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix last commit --- 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))