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.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/test/test_exceptions.py b/test/test_exceptions.py
index c680591..c904d65 100644
--- a/test/test_exceptions.py
+++ b/test/test_exceptions.py
@@ -195,10 +195,15 @@ ${u'привет'}
html_error = exceptions.html_error_template().render()
if compat.py3k:
assert "RuntimeError: test" in html_error.decode("utf-8")
- assert "foo = u("日本")" in html_error.decode("utf-8")
+ assert "foo = u("日本")" in html_error.decode(
+ "utf-8"
+ ) or "foo = u("日本")" in html_error.decode("utf-8")
else:
assert "RuntimeError: test" in html_error
- assert "foo = u("日本")" in html_error
+ assert (
+ "foo = u("日本")" in html_error
+ or "foo = u("日本")" in html_error
+ )
def test_py_unicode_error_html_error_template(self):
try:
@@ -328,7 +333,7 @@ ${foobar}
def test_custom_tback(self):
try:
raise RuntimeError("error 1")
- foo("bar") # noqa
+ foo("bar") # noqa
except:
t, v, tback = sys.exc_info()
@@ -341,7 +346,10 @@ ${foobar}
# obfuscate the text so that this text
# isn't in the 'wrong' exception
- assert "".join(reversed(");touq&rab;touq&(oof")) in html_error
+ assert (
+ "".join(reversed(");touq&rab;touq&(oof")) in html_error
+ or "".join(reversed(");43#&rab;43#&(oof")) in html_error
+ )
def test_tback_no_trace_from_py_file(self):
try: