summaryrefslogtreecommitdiff
path: root/pylint/testutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/testutils.py')
-rw-r--r--pylint/testutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/testutils.py b/pylint/testutils.py
index 1d0c3c8..ecb26ce 100644
--- a/pylint/testutils.py
+++ b/pylint/testutils.py
@@ -272,7 +272,7 @@ class LintTestUsingModule(unittest.TestCase):
def test_functionality(self):
tocheck = [self.package+'.'+self.module]
- # pylint: disable=not-iterable-context; can't handle boolean checks for now
+ # pylint: disable=not-an-iterable; can't handle boolean checks for now
if self.depends:
tocheck += [self.package+'.%s' % name.replace('.py', '')
for name, _ in self.depends]
@@ -318,7 +318,7 @@ class LintTestUsingFile(LintTestUsingModule):
if not isdir(importable):
importable += '.py'
tocheck = [importable]
- # pylint: disable=not-iterable-context; can't handle boolean checks for now
+ # pylint: disable=not-an-iterable; can't handle boolean checks for now
if self.depends:
tocheck += [join(self.INPUT_DIR, name) for name, _ in self.depends]
self._test(tocheck)