diff options
Diffstat (limited to 'test/orm/inheritance/test_basic.py')
| -rw-r--r-- | test/orm/inheritance/test_basic.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/orm/inheritance/test_basic.py b/test/orm/inheritance/test_basic.py index ab6116256..6c9da92d2 100644 --- a/test/orm/inheritance/test_basic.py +++ b/test/orm/inheritance/test_basic.py @@ -384,7 +384,7 @@ class PolymorphicOnNotLocalTest(fixtures.MappedTest): polymorphic_identity=0, ) - def test_polymorpic_on_not_in_with_poly(self): + def test_polymorphic_on_not_in_with_poly(self): t2, t1 = self.tables.t2, self.tables.t1 Parent = self.classes.Parent @@ -2300,7 +2300,7 @@ class OverrideColKeyTest(fixtures.MappedTest): ) def test_plain_descriptor(self): - """test that descriptors prevent inheritance from propigating + """test that descriptors prevent inheritance from propagating properties to subclasses.""" class Base(object): @@ -2321,7 +2321,7 @@ class OverrideColKeyTest(fixtures.MappedTest): assert sess.query(Sub).one().data == "im the data" def test_custom_descriptor(self): - """test that descriptors prevent inheritance from propigating + """test that descriptors prevent inheritance from propagating properties to subclasses.""" class MyDesc(object): |
