summaryrefslogtreecommitdiff
path: root/tests/test_import_graph.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-14 15:54:52 +0200
committerGitHub <noreply@github.com>2022-04-14 15:54:52 +0200
commit0a6381194b4157dffa6f4d49ed87808276b9bd44 (patch)
treec769a3f0c00c8a6084fe5ead7a925efc71b45ecb /tests/test_import_graph.py
parent811b35d0a384423d9efba3594a5ff851789ac7b2 (diff)
downloadpylint-git-0a6381194b4157dffa6f4d49ed87808276b9bd44.tar.gz
Replace .namespace with .config (#6316)
Diffstat (limited to 'tests/test_import_graph.py')
-rw-r--r--tests/test_import_graph.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_import_graph.py b/tests/test_import_graph.py
index 269370d54..5efd11e85 100644
--- a/tests/test_import_graph.py
+++ b/tests/test_import_graph.py
@@ -88,9 +88,9 @@ def test_checker_dep_graphs(linter: PyLinter) -> None:
linter.set_option("persistent", False)
linter.set_option("reports", True)
linter.set_option("enable", "imports")
- linter.namespace.import_graph = "import.dot"
- linter.namespace.ext_import_graph = "ext_import.dot"
- linter.namespace.int_import_graph = "int_import.dot"
+ linter.config.import_graph = "import.dot"
+ linter.config.ext_import_graph = "ext_import.dot"
+ linter.config.int_import_graph = "int_import.dot"
# ignore this file causing spurious MemoryError w/ some python version (>=2.3?)
linter.set_option("ignore", ("func_unknown_encoding.py",))
linter.check(["input"])