From 5fd49b42ea2962c1e2a01a89846d0f385f16f81a Mon Sep 17 00:00:00 2001 From: Chris Withers Date: Fri, 9 Apr 2010 17:35:16 +0100 Subject: [PATCH] learn to spell --- test/ext/test_declarative.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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: -- 2.47.3