diff options
| author | Jason Kirtland <jek@discorporate.us> | 2007-10-07 21:57:42 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2007-10-07 21:57:42 +0000 |
| commit | 585b425850fa86e7fb38ad7050681ab41f427ad7 (patch) | |
| tree | ff980281ad9bbcac936133fb5d14d6f75a23f89f | |
| parent | 982b622a37752fe7efd94dab54ec355da72c2d09 (diff) | |
| download | sqlalchemy-585b425850fa86e7fb38ad7050681ab41f427ad7.tar.gz | |
- Squashed assumption of transparent type coercion support in defaults test
| -rw-r--r-- | test/sql/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/query.py b/test/sql/query.py index 29a1bfee8..1a08a0e30 100644 --- a/test/sql/query.py +++ b/test/sql/query.py @@ -357,7 +357,7 @@ class QueryTest(PersistTest): ) t2 = Table('t2', meta, Column('id', Integer, Sequence('t2idseq', optional=True), primary_key=True), - Column('value', Integer, default="7"), + Column('value', Integer, default=7), Column('stuff', String(20), onupdate="thisisstuff") ) meta.create_all() |
