From: Mike Bayer Date: Thu, 15 Jun 2017 22:47:33 +0000 (-0400) Subject: - fix the col length missing just like in master... X-Git-Tag: rel_1_1_11~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa62a0af2706475ff3bef246fc02b2968cb4c03c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix the col length missing just like in master... Change-Id: I172999198217b9a09f136664f5a7e38e7e099df6 --- diff --git a/test/orm/test_options.py b/test/orm/test_options.py index 737f3cd6f3..8b998c1905 100644 --- a/test/orm/test_options.py +++ b/test/orm/test_options.py @@ -533,7 +533,7 @@ class FromSubclassOptionsTest(PathTest, fixtures.DeclarativeMappedTest): __tablename__ = 'basecls' id = Column(Integer, primary_key=True) - type = Column(String) + type = Column(String(30)) related_id = Column(ForeignKey('related.id')) related = relationship("Related")