From 8f694c758864853b4768495dd199fd8142d7357d Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Fri, 25 Jul 2014 13:42:10 -0500 Subject: [PATCH] Fixing unittests based on previous patch for splitting --- test/units/TestUtils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/units/TestUtils.py b/test/units/TestUtils.py index dff76c2664..9fcad75fcb 100644 --- a/test/units/TestUtils.py +++ b/test/units/TestUtils.py @@ -704,8 +704,7 @@ class TestUtils(unittest.TestCase): _test_combo( # in memory of neighbors cat 'a {% if x %} y {%else %} {{meow}} {% endif %} cookiechip\ndone', - # turning \n into a split point here seems a little off. We'll see if other tests care. - ['a', '{% if x %}', 'y', '{%else %}', '{{meow}}', '{% endif %}', 'cookiechip', 'done'] + ['a', '{% if x %}', 'y', '{%else %}', '{{meow}}', '{% endif %}', 'cookiechip\ndone'] ) # invalid jinja2 nesting detection