From 29f607927fe82e2c8baab171dfa8baf710cd9b83 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 2 Feb 2017 20:43:21 -0500 Subject: Fixed spelling of "nonexistent". --- tests/decorators/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/decorators') diff --git a/tests/decorators/tests.py b/tests/decorators/tests.py index 8fedacec22..3afab467a1 100644 --- a/tests/decorators/tests.py +++ b/tests/decorators/tests.py @@ -384,10 +384,10 @@ class MethodDecoratorTests(SimpleTestCase): """ msg = ( "The keyword argument `name` must be the name of a method of the " - "decorated class: . Got 'non_existing_method' instead" + "decorated class: . Got 'nonexistent_method' instead" ) with self.assertRaisesMessage(ValueError, msg): - @method_decorator(lambda: None, name="non_existing_method") + @method_decorator(lambda: None, name='nonexistent_method') class Test: @classmethod def __module__(cls): -- cgit v1.3