From c2031f6b62786738d51c8755b2c34b2329a789eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 4 Nov 2021 18:03:06 +0100 Subject: [PATCH] Tests: Adapt expected traceback regexes for Python 3.11.0a1 Fixes https://github.com/pallets/jinja/issues/1526 Before: File ".../broken.html", line 2, in {{ fail() }} File ".../test_debug.py", line 32, in tmpl.render(fail=lambda: 1 / 0) ZeroDivisionError: division by zero After: File ".../broken.html", line 2, in {{ fail() }} ^^^^^^^^^^^^ File ".../test_debug.py", line 32, in tmpl.render(fail=lambda: 1 / 0) ~~^~~ ZeroDivisionError: division by zero --- tests/test_debug.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test_debug.py b/tests/test_debug.py index c639bbc29..bc11f401b 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -36,9 +36,11 @@ def test(): test, r""" File ".*?broken.html", line 2, in (top-level template code|) - \{\{ fail\(\) \}\} + \{\{ fail\(\) \}\}( + \^{12})? File ".*debug?.pyc?", line \d+, in - tmpl\.render\(fail=lambda: 1 / 0\) + tmpl\.render\(fail=lambda: 1 / 0\)( + ~~\^~~)? ZeroDivisionError: (int(eger)? )?division (or modulo )?by zero """, ) @@ -66,7 +68,8 @@ def test(): test, r""" File ".*debug.pyc?", line \d+, in test - raise TemplateSyntaxError\("wtf", 42\) + raise TemplateSyntaxError\("wtf", 42\)( + \^{36})? (jinja2\.exceptions\.)?TemplateSyntaxError: wtf line 42""", )