Revert "Add missing semicolon to test"

This reverts commit 92e0b8b523.
This commit is contained in:
Daniel Haaker 2010-10-29 10:50:41 +02:00
parent 92e0b8b523
commit a7eb22f2e3
2 changed files with 2 additions and 2 deletions

View file

@ -173,7 +173,7 @@ like this::
text='<strong>HTML</strong> allowed here' text='<strong>HTML</strong> allowed here'
), follow_redirects=True) ), follow_redirects=True)
assert 'No entries here so far' not in rv.data assert 'No entries here so far' not in rv.data
assert '&lt;Hello&gt;' in rv.data assert '&lt;Hello&gt' in rv.data
assert '<strong>HTML</strong> allowed here' in rv.data assert '<strong>HTML</strong> allowed here' in rv.data
Here we check that HTML is allowed in the text but not in the title, Here we check that HTML is allowed in the text but not in the title,

View file

@ -66,7 +66,7 @@ class FlaskrTestCase(unittest.TestCase):
text='<strong>HTML</strong> allowed here' text='<strong>HTML</strong> allowed here'
), follow_redirects=True) ), follow_redirects=True)
assert 'No entries here so far' not in rv.data assert 'No entries here so far' not in rv.data
assert '&lt;Hello&gt' in rv.data assert '&lt;Hello&gt' in rv.data
assert '<strong>HTML</strong> allowed here' in rv.data assert '<strong>HTML</strong> allowed here' in rv.data