Skip to content

Commit

Permalink
typos (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
shinevue authored and hynek committed Jan 7, 2022
1 parent e24d371 commit a4e0cb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_make.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ class C(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
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_slots.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def f(self):


@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.
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_default(self):
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`.
"""
Expand Down

0 comments on commit a4e0cb2

Please sign in to comment.