summaryrefslogtreecommitdiff
path: root/tests/test_utils
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-04-07 22:04:45 -0400
committerTim Graham <timograham@gmail.com>2016-04-08 10:12:33 -0400
commit92053acbb9160862c3e743a99ed8ccff8d4f8fd6 (patch)
tree50e7fd28a650f0e2352cf94f92e5a66d28a81988 /tests/test_utils
parentdf8d8d4292684d6ffa7474f1e201aed486f02b53 (diff)
Fixed E128 flake8 warnings in tests/.
Diffstat (limited to 'tests/test_utils')
-rw-r--r--tests/test_utils/tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py
index c4d51833f4..fd552ad9c2 100644
--- a/tests/test_utils/tests.py
+++ b/tests/test_utils/tests.py
@@ -440,8 +440,10 @@ class HTMLEqualTests(SimpleTestCase):
self.assertEqual(dom.children[0], "<p>foo</p> '</scr'+'ipt>' <span>bar</span>")
def test_self_closing_tags(self):
- self_closing_tags = ('br', 'hr', 'input', 'img', 'meta', 'spacer',
- 'link', 'frame', 'base', 'col')
+ self_closing_tags = (
+ 'br', 'hr', 'input', 'img', 'meta', 'spacer', 'link', 'frame',
+ 'base', 'col',
+ )
for tag in self_closing_tags:
dom = parse_html('<p>Hello <%s> world</p>' % tag)
self.assertEqual(len(dom.children), 3)