summaryrefslogtreecommitdiff
path: root/test/sql/test_functions.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-03-11 18:34:27 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2010-03-11 18:34:27 +0000
commit47f7b6f68e42d9157bbb88dc519f8a9875bef88f (patch)
tree45113b06a39de37ead3bb834ec7187cb3c4700d0 /test/sql/test_functions.py
parent9a3a909ed2fc918c7cc7dd80b578bb0991d60bd9 (diff)
downloadsqlalchemy-47f7b6f68e42d9157bbb88dc519f8a9875bef88f.tar.gz
fix this test for oracle so all types return datetime.date
Diffstat (limited to 'test/sql/test_functions.py')
-rw-r--r--test/sql/test_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_functions.py b/test/sql/test_functions.py
index 960bb6652..3ed5ee145 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):