From: Mike Bayer Date: Wed, 1 Jul 2015 21:47:26 +0000 (-0400) Subject: - increase the varchar here X-Git-Tag: rel_1_0_7~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d58846ba7ec9897fad6a0aea9261c9f033489275;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - increase the varchar here --- diff --git a/test/orm/test_unitofworkv2.py b/test/orm/test_unitofworkv2.py index 35d32a6b34..9e9f400be5 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