diff options
Diffstat (limited to 'test/ext/test_hybrid.py')
-rw-r--r-- | test/ext/test_hybrid.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ext/test_hybrid.py b/test/ext/test_hybrid.py index b85d4b0fc..77966e6e5 100644 --- a/test/ext/test_hybrid.py +++ b/test/ext/test_hybrid.py @@ -62,7 +62,7 @@ class PropertyComparatorTest(fixtures.TestBase, AssertsCompiledSQL): "SELECT a.value AS a_value FROM a" ) - def test_alised_query(self): + def test_aliased_query(self): A = self._fixture() sess = Session() self.assert_compile( @@ -214,7 +214,7 @@ class PropertyValueTest(fixtures.TestBase, AssertsCompiledSQL): A = self._fixture(False) a1 = A(_value=5) assert_raises_message( - AttributeError, + AttributeError, "can't set attribute", setattr, a1, 'value', 10 ) @@ -223,7 +223,7 @@ class PropertyValueTest(fixtures.TestBase, AssertsCompiledSQL): A = self._fixture(False) a1 = A(_value=5) assert_raises_message( - AttributeError, + AttributeError, "can't delete attribute", delattr, a1, 'value' ) |