aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_exceptions.py')
-rw-r--r--test/test_exceptions.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/test_exceptions.py b/test/test_exceptions.py
index 70fe39f..97987e6 100644
--- a/test/test_exceptions.py
+++ b/test/test_exceptions.py
@@ -75,10 +75,16 @@ ${u'привет'}
template.render_unicode()
except exceptions.CompileException, ce:
html_error = exceptions.html_error_template().render()
- assert ("CompileException: Fragment 'if 2 == 2: /an "
+ if util.py3k:
+ assert ("CompileException: Fragment 'if 2 == 2: /an "
"error' is not a partial control statement "
- "at line: 2 char: 1") in \
+ "at line: 2 char: 1").encode(sys.getdefaultencoding(), 'htmlentityreplace') in \
html_error
+ else:
+ assert ("CompileException: Fragment 'if 2 == 2: /an "
+ "error' is not a partial control statement "
+ "at line: 2 char: 1") in \
+ html_error
if util.py3k:
assert u"3 ${'привет'}".encode(sys.getdefaultencoding(),