]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
learn to spell
authorChris Withers <chris@simplistix.co.uk>
Fri, 9 Apr 2010 16:35:16 +0000 (17:35 +0100)
committerChris Withers <chris@simplistix.co.uk>
Fri, 9 Apr 2010 16:35:16 +0000 (17:35 +0100)
test/ext/test_declarative.py

index c0094b5ccd397eafd10f1808419098849d23337c..4554dd61a58c9a073ef4158e2018c81b62facedb 100644 (file)
@@ -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: