diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-01 17:47:26 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-07-01 17:47:26 -0400 |
commit | d58846ba7ec9897fad6a0aea9261c9f033489275 (patch) | |
tree | 5375472c1a0c975645d738940365a6135eab0bc5 | |
parent | ee34f7276b8ce7ef4b5c746b5adf8f8c65f7c826 (diff) | |
download | sqlalchemy-d58846ba7ec9897fad6a0aea9261c9f033489275.tar.gz |
- increase the varchar here
-rw-r--r-- | test/orm/test_unitofworkv2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/test_unitofworkv2.py b/test/orm/test_unitofworkv2.py index 35d32a6b3..9e9f400be 100644 --- a/test/orm/test_unitofworkv2.py +++ b/test/orm/test_unitofworkv2.py @@ -1887,7 +1887,7 @@ class TypeWoBoolTest(fixtures.MappedTest, testing.AssertsExecutionResults): Column('id', Integer, primary_key=True, test_needs_autoincrement=True), Column('value', MyType), - Column('unrelated', String(10)) + Column('unrelated', String(50)) ) @classmethod |