From: Mike Bayer Date: Thu, 11 Mar 2010 18:34:27 +0000 (+0000) Subject: fix this test for oracle so all types return datetime.date X-Git-Tag: rel_0_6beta2~57^2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47f7b6f68e42d9157bbb88dc519f8a9875bef88f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix this test for oracle so all types return datetime.date --- diff --git a/test/sql/test_functions.py b/test/sql/test_functions.py index 960bb66526..3ed5ee1458 100644 --- a/test/sql/test_functions.py +++ b/test/sql/test_functions.py @@ -200,7 +200,7 @@ class ExecuteTest(TestBase): from sqlalchemy.ext.compiler import compiles class myfunc(FunctionElement): - type = DATE() + type = Date() @compiles(myfunc) def compile(elem, compiler, **kw):