From: Chris Withers Date: Fri, 9 Apr 2010 16:35:16 +0000 (+0100) Subject: learn to spell X-Git-Tag: rel_0_6_0~23^2~18^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5fd49b42ea2962c1e2a01a89846d0f385f16f81a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git learn to spell --- diff --git a/test/ext/test_declarative.py b/test/ext/test_declarative.py index c0094b5ccd..4554dd61a5 100644 --- a/test/ext/test_declarative.py +++ b/test/ext/test_declarative.py @@ -2210,7 +2210,7 @@ class DeclarativeMixinTest(DeclarativeTestBase): eq_(MyModel.__mapper__.always_refresh,True) - def test_single_table_no_propogation(self): + def test_single_table_no_propagation(self): class IdColumn: id = Column(Integer, primary_key=True) @@ -2227,7 +2227,7 @@ class DeclarativeMixinTest(DeclarativeTestBase): class SpecificType2(BaseType): __mapper_args__ = dict(polymorphic_identity='type2') - def test_joined_table_propogation(self): + def test_joined_table_propagation(self): class IdColumn: id = Column(Integer, primary_key=True) @@ -2246,7 +2246,7 @@ class DeclarativeMixinTest(DeclarativeTestBase): __tablename__ = 'type2' __mapper_args__ = dict(polymorphic_identity='type2') - def test_tablename_propogation(self): + def test_tablename_propagation(self): # ie: we want joined table class TableNameMixin: @classproperty @@ -2267,7 +2267,7 @@ class DeclarativeMixinTest(DeclarativeTestBase): __mapper_args__ = dict(polymorphic_identity='type2') id = Column(Integer, primary_key=True) - def test_tablename_no_propogation(self): + def test_tablename_no_propagation(self): # ie: we want single table class TableNameMixin: