summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-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"))