From d9c7d9e0b0b2c6e45c1cdf8fc1c62dd8c25e5336 Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Mon, 8 Mar 2010 12:22:33 -0800 Subject: [PATCH] small cleanup --- 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 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)) -- 2.47.3