This commit is contained in:
Aaron Stephens 2022-01-07 01:28:34 -08:00 committed by GitHub
parent f3dfe96b48
commit 5f36ba9b89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -310,7 +310,7 @@ class TestTransformAttrs(object):
def test_multiple_inheritance_old(self):
"""
Old multiple inheritance attributre collection behavior is retained.
Old multiple inheritance attribute collection behavior is retained.
See #285
"""

View File

@ -717,7 +717,7 @@ def test_slots_super_property_get():
@pytest.mark.skipif(PY2, reason="shortcut super() is PY3-only.")
def test_slots_super_property_get_shurtcut():
def test_slots_super_property_get_shortcut():
"""
On Python 3, the `super()` shortcut is allowed.
"""

View File

@ -64,7 +64,7 @@ class TestDisableValidators(object):
assert _config._run_validators is True
@pytest.mark.parametrize("value, expected", [(True, False), (False, True)])
def test_set_validators_diabled(self, value, expected):
def test_set_validators_disabled(self, value, expected):
"""
Sets `_run_validators`.
"""