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")