diff options
author | Jason Kirtland <jek@discorporate.us> | 2008-01-09 22:54:51 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2008-01-09 22:54:51 +0000 |
commit | 84576e3258ea05b044f90463e8a59541661d5931 (patch) | |
tree | bb270f23d8f9b53a58e2f1523733d714d2f45fde /test/dialect/postgres.py | |
parent | 046ec98a0bb5065b931911aa3e3a3ec6fe9f8507 (diff) | |
download | sqlalchemy-84576e3258ea05b044f90463e8a59541661d5931.tar.gz |
test suite deprecation rampage
Diffstat (limited to 'test/dialect/postgres.py')
-rw-r--r-- | test/dialect/postgres.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dialect/postgres.py b/test/dialect/postgres.py index 78d47ef9d..a3d1f665b 100644 --- a/test/dialect/postgres.py +++ b/test/dialect/postgres.py @@ -24,8 +24,8 @@ class CompileTest(SQLCompileTest): dialect = postgres.dialect() table1 = table('mytable', column('myid', Integer), - column('name', String), - column('description', String), + column('name', String(128)), + column('description', String(128)), ) u = update(table1, values=dict(name='foo'), postgres_returning=[table1.c.myid, table1.c.name]) @@ -42,8 +42,8 @@ class CompileTest(SQLCompileTest): dialect = postgres.dialect() table1 = table('mytable', column('myid', Integer), - column('name', String), - column('description', String), + column('name', String(128)), + column('description', String(128)), ) i = insert(table1, values=dict(name='foo'), postgres_returning=[table1.c.myid, table1.c.name]) |