summaryrefslogtreecommitdiff
path: root/test/test_func.py
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2014-07-25 13:07:34 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2014-07-25 13:07:34 +0200
commit4449a950ea759331f0840435616be7591fa407a0 (patch)
treeed2da8e392fe050bea52f169ed3084df53337193 /test/test_func.py
parentee26e69c938d62c3fc48cd6848bee35ccce70637 (diff)
downloadpylint-4449a950ea759331f0840435616be7591fa407a0.tar.gz
Don't emit hidden-method message when the attribute has been monkey-patched,
you're on your own when you do that Closes http://www.logilab.org/ticket/36653
Diffstat (limited to 'test/test_func.py')
-rw-r--r--test/test_func.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_func.py b/test/test_func.py
index 2d573c2..8a0d983 100644
--- a/test/test_func.py
+++ b/test/test_func.py
@@ -44,7 +44,7 @@ class LintTestNonExistentModuleTC(LintTestUsingModule):
class TestTests(testlib.TestCase):
"""check that all testable messages have been checked"""
- PORTED = set(['I0001', 'I0010', 'W0712', 'E1001', 'W1402', 'E1310'])
+ PORTED = set(['I0001', 'I0010', 'W0712', 'E1001', 'W1402', 'E1310', 'E0202'])
@testlib.tag('coverage')
def test_exhaustivity(self):