diff options
Diffstat (limited to 'test/orm/inheritance/test_basic.py')
-rw-r--r-- | test/orm/inheritance/test_basic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/orm/inheritance/test_basic.py b/test/orm/inheritance/test_basic.py index 4c6247fa8..96bb0237b 100644 --- a/test/orm/inheritance/test_basic.py +++ b/test/orm/inheritance/test_basic.py @@ -98,7 +98,7 @@ class PolymorphicOnNotLocalTest(_base.MappedTest): assert_raises_message( sa_exc.SAWarning, - "Could not map polymoprhic_on column 'x' to the mapped table - " + "Could not map polymorphic_on column 'x' to the mapped table - " "polymorphic loads will not function properly", go ) @@ -122,7 +122,7 @@ class PolymorphicOnNotLocalTest(_base.MappedTest): polymorphic_identity=0) assert_raises_message( sa_exc.SAWarning, - "Could not map polymoprhic_on column 'x' to the mapped table - " + "Could not map polymorphic_on column 'x' to the mapped table - " "polymorphic loads will not function properly", go ) |