From: Philip Jenvey Date: Mon, 8 Mar 2010 20:22:33 +0000 (-0800) Subject: small cleanup X-Git-Tag: rel_0_6beta2~62^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9c7d9e0b0b2c6e45c1cdf8fc1c62dd8c25e5336;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git small cleanup --- diff --git a/test/engine/test_pool.py b/test/engine/test_pool.py index 4b511e43a9..0ba716ea3f 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(str(select([1]).compile(testing.db))) + cursor.execute(select([1], bind=testing.db)) expected = [(1,)] for row in cursor: eq_(row, expected.pop(0))