From: Armin Ronacher Date: Sun, 7 Feb 2010 00:27:34 +0000 (+0100) Subject: Fixed bug in a testcase. X-Git-Tag: 2.3~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5d659dbe62e8198d26dbb72b25ad28326eba85a4;p=jinja2.git Fixed bug in a testcase. --HG-- branch : trunk --- diff --git a/tests/test_old_bugs.py b/tests/test_old_bugs.py index 9ca8344..5e51391 100644 --- a/tests/test_old_bugs.py +++ b/tests/test_old_bugs.py @@ -155,7 +155,6 @@ def test_recursive_loop_bug(): {% endfor %} {% endfor %} """) - tpl1.render(ctx) tpl2 = Template(""" {% for p in foo%} @@ -169,4 +168,3 @@ def test_recursive_loop_bug(): {% endfor %} {% endfor %} """) - tpl2.render(ctx)