]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Squashed assumption of transparent type coercion support in defaults test
authorJason Kirtland <jek@discorporate.us>
Sun, 7 Oct 2007 21:57:42 +0000 (21:57 +0000)
committerJason Kirtland <jek@discorporate.us>
Sun, 7 Oct 2007 21:57:42 +0000 (21:57 +0000)
test/sql/query.py

index 29a1bfee8acb1aae1fba6b80aad38bbffd49d2dd..1a08a0e304bf908c71aa003c49473ad03328a7ae 100644 (file)
@@ -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()