diff options
| author | Jason Kirtland <jek@discorporate.us> | 2007-10-02 20:58:58 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2007-10-02 20:58:58 +0000 |
| commit | 73b0c40946ddcf4f4cbbccb90e81fd914143576d (patch) | |
| tree | 36f84c2c22d0f7b5b1ea22c861186474b2305013 | |
| parent | 1880e6d8c36f6bc671fd2c08783db4538d1f8caf (diff) | |
| download | sqlalchemy-73b0c40946ddcf4f4cbbccb90e81fd914143576d.tar.gz | |
- Tweaked the sql.text date test
| -rw-r--r-- | test/sql/testtypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/testtypes.py b/test/sql/testtypes.py index 8c29ced1b..72a696c96 100644 --- a/test/sql/testtypes.py +++ b/test/sql/testtypes.py @@ -455,7 +455,7 @@ class DateTest(AssertMixin): x = testbase.db.text( "select * from query_users_with_date where user_datetime=:date", - bindparams=[bindparam('date', )]).execute( + bindparams=[bindparam('date', type_=types.DateTime)]).execute( date=datetime.datetime(2005, 11, 10, 11, 52, 35)).fetchall() print repr(x) |
