summaryrefslogtreecommitdiff
path: root/tests/checkers
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-19 17:38:15 +0200
committerGitHub <noreply@github.com>2022-04-19 17:38:15 +0200
commit5ee5cf77cd1c6f9bf83cfcc696f42dad204e9735 (patch)
tree8ec55209e9096794ec53d7ffc6a3c5660ec0bc9a /tests/checkers
parentc550cce659a4341923cf28cdb167ae89d1c85a74 (diff)
downloadpylint-git-5ee5cf77cd1c6f9bf83cfcc696f42dad204e9735.tar.gz
Deprecate ``MapReduceMixin`` and implements its methods in ``BaseChecker`` (#6383)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'tests/checkers')
-rw-r--r--tests/checkers/unittest_similar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkers/unittest_similar.py b/tests/checkers/unittest_similar.py
index dae1628f1..a14eabe40 100644
--- a/tests/checkers/unittest_similar.py
+++ b/tests/checkers/unittest_similar.py
@@ -376,7 +376,7 @@ def test_no_args() -> None:
def test_get_map_data() -> None:
- """Tests that a SimilarChecker respects the MapReduceMixin interface."""
+ """Tests that a SimilarChecker can return and reduce mapped data."""
linter = PyLinter(reporter=Reporter())
# Add a parallel checker to ensure it can map and reduce
linter.register_checker(similar.SimilarChecker(linter))