summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2014-12-22 22:15:01 -0800
committerIan Lee <IanLee1521@gmail.com>2014-12-22 22:15:01 -0800
commita21598e67abeb557f85855cdc04106c7c212f09b (patch)
tree0c4f424f088d185cdeca110e1ef8ed9657dfa39e /testsuite
parent96ddf8c25f053a9d7ced73b194d8558c90069319 (diff)
parent2e540a1d8c623b99b35c444649848a40c2f2c95c (diff)
downloadpep8-a21598e67abeb557f85855cdc04106c7c212f09b.tar.gz
Merge pull request #360 from jcrocholl/issue-316
Add E121 and E126 to the DEFAULT_IGNORE list
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/test_api.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/testsuite/test_api.py b/testsuite/test_api.py
index de7bc7b..341fb34 100644
--- a/testsuite/test_api.py
+++ b/testsuite/test_api.py
@@ -179,7 +179,10 @@ class APITestCase(unittest.TestCase):
options = parse_argv('').options
self.assertEqual(options.select, ())
- self.assertEqual(options.ignore, ('E123', 'E226', 'E24', 'E704'))
+ self.assertEqual(
+ options.ignore,
+ ('E121', 'E123', 'E126', 'E226', 'E24', 'E704')
+ )
options = parse_argv('--doctest').options
self.assertEqual(options.select, ())