diff options
Diffstat (limited to 'tests/extensions/test_check_docs.py')
-rw-r--r-- | tests/extensions/test_check_docs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extensions/test_check_docs.py b/tests/extensions/test_check_docs.py index 28f8d935c..ef7ac4928 100644 --- a/tests/extensions/test_check_docs.py +++ b/tests/extensions/test_check_docs.py @@ -214,7 +214,7 @@ class TestParamDocChecker(CheckerTestCase): self.checker.visit_functiondef(node) def test_func_params_and_keyword_params_in_google_docstring(self) -> None: - """Example of a function with Google style parameter splitted + """Example of a function with Google style parameter split in Args and Keyword Args in the docstring """ node = astroid.extract_node( @@ -236,7 +236,7 @@ class TestParamDocChecker(CheckerTestCase): self.checker.visit_functiondef(node) def test_func_params_and_wrong_keyword_params_in_google_docstring(self) -> None: - """Example of a function with Google style parameter splitted + """Example of a function with Google style parameter split in Args and Keyword Args in the docstring but with wrong keyword args """ node = astroid.extract_node( |