]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix last commit
authorPhilip Jenvey <pjenvey@underboss.org>
Mon, 8 Mar 2010 21:04:32 +0000 (13:04 -0800)
committerPhilip Jenvey <pjenvey@underboss.org>
Mon, 8 Mar 2010 21:04:32 +0000 (13:04 -0800)
test/engine/test_pool.py

index 0ba716ea3f4db037bd46644fb73ccfe08ab7a94a..924f2e8afd1bad833f2b33c11fba01947ca0f0ca 100644 (file)
@@ -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))