From 94a7312d5ac5e2f949c4e27ecf2a273cec3d8c0c Mon Sep 17 00:00:00 2001 From: Daniel Haaker Date: Fri, 29 Oct 2010 10:55:10 +0200 Subject: [PATCH] Add missing semicolon to test Signed-off-by: Armin Ronacher --- docs/testing.rst | 2 +- examples/flaskr/flaskr_tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/testing.rst b/docs/testing.rst index 790eddf6..b9f0806b 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -173,7 +173,7 @@ like this:: text='HTML allowed here' ), follow_redirects=True) assert 'No entries here so far' not in rv.data - assert '<Hello>' in rv.data + assert '<Hello>' in rv.data assert 'HTML allowed here' in rv.data Here we check that HTML is allowed in the text but not in the title, diff --git a/examples/flaskr/flaskr_tests.py b/examples/flaskr/flaskr_tests.py index 07e702c4..06bf1035 100644 --- a/examples/flaskr/flaskr_tests.py +++ b/examples/flaskr/flaskr_tests.py @@ -66,7 +66,7 @@ class FlaskrTestCase(unittest.TestCase): text='HTML allowed here' ), follow_redirects=True) assert 'No entries here so far' not in rv.data - assert '<Hello>' in rv.data + assert '<Hello>' in rv.data assert 'HTML allowed here' in rv.data