summaryrefslogtreecommitdiff
path: root/testsuite/E72.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-24 19:13:43 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-24 19:13:43 +0100
commit6ffa51ae59f2d9ecc0efbc4e46d4136fb9e80421 (patch)
tree9629c39f80461a72da6234066fea4c7584ebbdac /testsuite/E72.py
parent4afc7ae620001d0ffce7d425f220c24754513c85 (diff)
downloadpep8-6ffa51ae59f2d9ecc0efbc4e46d4136fb9e80421.tar.gz
Improve the test framework to count the errors, motivated by issue #237
Diffstat (limited to 'testsuite/E72.py')
-rw-r--r--testsuite/E72.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/E72.py b/testsuite/E72.py
index 514995a..8eb34cb 100644
--- a/testsuite/E72.py
+++ b/testsuite/E72.py
@@ -32,7 +32,7 @@ assert type(res) is type((1, ))
assert type(res) is not type((1, ))
#: E211 E721
assert type(res) == type ([2, ])
-#: E201 E202 E721
+#: E201 E201 E202 E721
assert type(res) == type( ( ) )
#: E201 E202 E721
assert type(res) == type( (0, ) )