summaryrefslogtreecommitdiff
path: root/tests/testutils
diff options
context:
space:
mode:
authorDani Alcala <112832187+clavedeluna@users.noreply.github.com>2023-01-25 13:11:26 -0300
committerGitHub <noreply@github.com>2023-01-25 17:11:26 +0100
commit09df968d0ea2b102935fcbf730579c2f4d07a119 (patch)
tree4592ef98d7b0c52b1103be7daaadab0bdcc1e9ca /tests/testutils
parent92ec5d2faa9957ec988c133675209759a82117b5 (diff)
downloadpylint-git-09df968d0ea2b102935fcbf730579c2f4d07a119.tar.gz
Update disallowed-name to flag module-level variables (#7808)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'tests/testutils')
-rw-r--r--tests/testutils/test_lint_module_output_update.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/test_lint_module_output_update.py b/tests/testutils/test_lint_module_output_update.py
index 1c9e589af..2e387a118 100644
--- a/tests/testutils/test_lint_module_output_update.py
+++ b/tests/testutils/test_lint_module_output_update.py
@@ -63,7 +63,7 @@ def test_lint_module_output_update_effective(
assert (expected_output_file).exists()
assert (
expected_output_file.read_text(encoding="utf8")
- == 'disallowed-name:1:0:None:None::"Disallowed name ""foo""":UNDEFINED\n'
+ == 'disallowed-name:1:0:None:None::"Disallowed name ""foo""":HIGH\n'
)