diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-01-17 17:59:31 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-01-17 17:59:31 +0000 |
| commit | 8f54a225a564e138c73a07c750e2d5a16c77de4d (patch) | |
| tree | 8789164e328dcf3d743b9989d0abc33da241fe42 | |
| parent | 8654a91e12e988b7be575364e3a791f2b4052fc1 (diff) | |
Fixed spaceless template-tag tests in trunk (from magic-removal [2030])
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2036 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/othertests/templates.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/othertests/templates.py b/tests/othertests/templates.py index 5e3afd01e4..bfb62c7bd1 100644 --- a/tests/othertests/templates.py +++ b/tests/othertests/templates.py @@ -299,8 +299,8 @@ TEMPLATE_TESTS = { """), # {% spaceless %} tag - 'spaceless01': ("{% spaceless %} <b> <i> text </i> </b> {% endspaceless %}", {}, "<b><i> text </i></b>"), - 'spaceless02': ("{% spaceless %} <b> \n <i> text </i> \n </b> {% endspaceless %}", {}, "<b><i> text </i></b>"), + 'spaceless01': ("{% spaceless %} <b> <i> text </i> </b> {% endspaceless %}", {}, "<b> <i> text </i> </b>"), + 'spaceless02': ("{% spaceless %} <b> \n <i> text </i> \n </b> {% endspaceless %}", {}, "<b> <i> text </i> </b>"), 'spaceless03': ("{% spaceless %}<b><i>text</i></b>{% endspaceless %}", {}, "<b><i>text</i></b>"), # simple translation of a string delimited by ' |
