summaryrefslogtreecommitdiff
path: root/tests/test_regr.py
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-04 15:54:03 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-05 08:36:41 +0200
commit3c5f5f9f7b4c29e17f601b01d404a3d49020f678 (patch)
tree95312f71880d552297e8376a627eeaee8972ea84 /tests/test_regr.py
parent2732e0cccec7feaac3f9f41fe52586c2755cb8f5 (diff)
downloadpylint-git-3c5f5f9f7b4c29e17f601b01d404a3d49020f678.tar.gz
Change parent class order of ``PyLinter``
Diffstat (limited to 'tests/test_regr.py')
-rw-r--r--tests/test_regr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_regr.py b/tests/test_regr.py
index e3c14c8a0..6f824f7fb 100644
--- a/tests/test_regr.py
+++ b/tests/test_regr.py
@@ -122,13 +122,13 @@ def test_pylint_config_attr() -> None:
mod = astroid.MANAGER.ast_from_module_name("pylint.lint.pylinter")
pylinter = mod["PyLinter"]
expect = [
- "OptionsManagerMixIn",
+ "_ArgumentsManager",
"object",
+ "OptionsManagerMixIn",
"ReportsHandlerMixIn",
"BaseTokenChecker",
"BaseChecker",
"OptionsProviderMixIn",
- "_ArgumentsManager",
]
assert [c.name for c in pylinter.ancestors()] == expect
assert list(astroid.Instance(pylinter).getattr("config"))