diff options
author | Michal Nowikowski <godfryd@gmail.com> | 2014-07-25 16:21:29 +0200 |
---|---|---|
committer | Michal Nowikowski <godfryd@gmail.com> | 2014-07-25 16:21:29 +0200 |
commit | 199226744f90191d2c48f48c27a48ca720a9c439 (patch) | |
tree | bafc9d5fbbe477356f54f972769b8f0e3edf1337 /test/test_func.py | |
parent | 7ecfa5bdb3006a974b901d6e7ac6c670a8f33eb0 (diff) | |
download | pylint-199226744f90191d2c48f48c27a48ca720a9c439.tar.gz |
Tweaked spelling checker msg ids and removed them from exhaustivity tests.
Diffstat (limited to 'test/test_func.py')
-rw-r--r-- | test/test_func.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_func.py b/test/test_func.py index 2d573c2..acd5c4a 100644 --- a/test/test_func.py +++ b/test/test_func.py @@ -59,6 +59,8 @@ class TestTests(testlib.TestCase): not_tested -= self.PORTED if PY3K: not_tested.remove('W0403') # relative-import + not_tested.remove("C0401") # requires optional lib python-enchant for spell checking + not_tested.remove("C0402") # requires optional lib python-enchant for spell checking self.assertFalse(not_tested) |