summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 17:28:11 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 21:58:08 +0200
commit2aef8452f37ff3bacaf371be978b62c59dcb7218 (patch)
tree513b4b1f9cea10c53e14f472a342387fcc773656
parent3423ea2eafa274ef7c300b9ffce6d96b84b72b2e (diff)
downloadpylint-git-2aef8452f37ff3bacaf371be978b62c59dcb7218.tar.gz
[tests lint] Fix some E0102: method already defined in tests
Some because the other tests were not working and fixing them is hard.
-rw-r--r--tests/extensions/test_check_docs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extensions/test_check_docs.py b/tests/extensions/test_check_docs.py
index ceec4324e..189dcc4d2 100644
--- a/tests/extensions/test_check_docs.py
+++ b/tests/extensions/test_check_docs.py
@@ -2113,7 +2113,7 @@ class TestParamDocChecker(CheckerTestCase):
with self.assertNoMessages():
self.checker.visit_functiondef(node)
- def test_ignores_return_in_abstract_method_google(self):
+ def test_ignores_return_in_abstract_method_google_2(self):
"""Example of a method documenting the return type that an
implementation should return.
"""
@@ -2132,7 +2132,7 @@ class TestParamDocChecker(CheckerTestCase):
with self.assertNoMessages():
self.checker.visit_functiondef(node)
- def test_ignores_return_in_abstract_method_numpy(self):
+ def test_ignores_return_in_abstract_method_numpy_2(self):
"""Example of a method documenting the return type that an
implementation should return.
"""