diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-07-25 13:07:34 +0200 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-07-25 13:07:34 +0200 |
commit | 4449a950ea759331f0840435616be7591fa407a0 (patch) | |
tree | ed2da8e392fe050bea52f169ed3084df53337193 /test/test_func.py | |
parent | ee26e69c938d62c3fc48cd6848bee35ccce70637 (diff) | |
download | pylint-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.py | 2 |
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): |