summaryrefslogtreecommitdiff
path: root/tests/test_utils/tests.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-26 18:27:42 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-26 18:27:42 -0700
commitb35ff0d9208c426cc0f67c65d724972974734f57 (patch)
tree90d724e0b7a367d485712d79bfd4027717c8c08b /tests/test_utils/tests.py
parent3351e94ffa37d3824a49b687125ee4a430b69bbe (diff)
Fixed all the E203 violations
Diffstat (limited to 'tests/test_utils/tests.py')
-rw-r--r--tests/test_utils/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py
index af2eef6747..666fde2fa6 100644
--- a/tests/test_utils/tests.py
+++ b/tests/test_utils/tests.py
@@ -322,7 +322,7 @@ class HTMLEqualTests(TestCase):
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',
+ 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)