From: Mike Bayer Date: Thu, 15 Nov 2012 02:47:41 +0000 (-0500) Subject: fix this test X-Git-Tag: rel_0_8_0b2~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94f8a792aad93f912d2e5b05cee7aafd8935470d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix this test --- diff --git a/test/sql/test_types.py b/test/sql/test_types.py index b229694481..f9ab785eda 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -421,7 +421,8 @@ class UserDefinedTest(fixtures.TablesTest, AssertsCompiledSQL): ) eq_( - select([t.c.data, type_coerce(t.c.data, MyType)]).select().execute().fetchall(), + select([t.c.data, type_coerce(t.c.data, MyType)]). + alias().select().execute().fetchall(), [('d1', 'd1BIND_OUT')] )