summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-06-07 18:46:43 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-06-07 18:46:43 -0500
commit4c0b1cd5e180b2c5a7ea31eeff083d64d9fdf6b8 (patch)
tree1de0b80d18109f355f4504988dd11f186c1e0f5a /tests
parent27dbd61f125a048612890d1d0c2ef0dd3f52df7d (diff)
downloadflake8-4c0b1cd5e180b2c5a7ea31eeff083d64d9fdf6b8.tar.gz
Fix tests broken by updating the default ignore list
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/test_aggregator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/test_aggregator.py b/tests/integration/test_aggregator.py
index 2186c35..bb87be0 100644
--- a/tests/integration/test_aggregator.py
+++ b/tests/integration/test_aggregator.py
@@ -43,6 +43,6 @@ def test_aggregate_options_when_isolated(optmanager):
assert options.isolated is True
assert options.select == ['E11', 'E34', 'E402', 'W', 'F']
assert sorted(options.ignore) == [
- 'E121', 'E123', 'E126', 'E226', 'E24', 'E704', 'E8',
+ 'E121', 'E123', 'E126', 'E226', 'E24', 'E704', 'E8', 'W503', 'W504',
]
assert options.exclude == [os.path.abspath('tests/*')]