spelling: children

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-12-18 21:33:14 -05:00
parent 226c42ad14
commit 1300c1c881
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class WarnWhenSubclassedTest(unittest.TestCase):
self.assertIn('foo.NewClass', str(w[1].message))
self.assertIn('bar.OldClass', str(w[1].message))
def test_subclassing_warns_only_on_direct_childs(self):
def test_subclassing_warns_only_on_direct_children(self):
Deprecated = create_deprecated_class('Deprecated', NewName,
warn_once=False,
warn_category=MyWarning)