summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce Guinta <bryce.paul.guinta@gmail.com>2018-07-13 18:26:19 -0600
committerBryce Guinta <bryce.paul.guinta@gmail.com>2018-07-13 18:26:19 -0600
commitebf7011701bd5d3d64cd453692b90f25aad5ceb2 (patch)
tree69dcee93473e55d5ddb14bf2a0ac31b7bd40a49e
parente502a7f5f4a4fba7bdaf463bdddb5d588ca0e8cf (diff)
downloadpylint-git-ebf7011701bd5d3d64cd453692b90f25aad5ceb2.tar.gz
Disable false-positive test message from changes in astroid
-rw-r--r--pylint/test/functional/deprecated_methods_py36.py1
-rw-r--r--pylint/test/functional/deprecated_methods_py36.txt2
2 files changed, 2 insertions, 1 deletions
diff --git a/pylint/test/functional/deprecated_methods_py36.py b/pylint/test/functional/deprecated_methods_py36.py
index dd822765f..f416a144c 100644
--- a/pylint/test/functional/deprecated_methods_py36.py
+++ b/pylint/test/functional/deprecated_methods_py36.py
@@ -1,4 +1,5 @@
""" Functional tests for method deprecation. """
+# pylint: disable=no-value-for-parameter
import unittest
from importlib.machinery import SourceFileLoader, SourcelessFileLoader
diff --git a/pylint/test/functional/deprecated_methods_py36.txt b/pylint/test/functional/deprecated_methods_py36.txt
index c3ccac636..e5ae124ac 100644
--- a/pylint/test/functional/deprecated_methods_py36.txt
+++ b/pylint/test/functional/deprecated_methods_py36.txt
@@ -1,2 +1,2 @@
-deprecated-method:5::Using deprecated method load_module()
deprecated-method:6::Using deprecated method load_module()
+deprecated-method:7::Using deprecated method load_module()