summaryrefslogtreecommitdiff
path: root/tests/regressiontests/templates/tests.py
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-08-30 19:25:40 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-08-30 19:25:40 +0000
commitf2d7ee759a8f17c70e8a924b6da30f86feee50ae (patch)
treec8cd7bcdc873acf768258d1aab4fdf99fd423ba6 /tests/regressiontests/templates/tests.py
parentddaa3016e29e6813e2ea5b0c3b6c021a4976adba (diff)
Fixed #8710: removed a few stray tabs. Thanks, gkelly.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8746 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/templates/tests.py')
-rw-r--r--tests/regressiontests/templates/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/regressiontests/templates/tests.py b/tests/regressiontests/templates/tests.py
index f04bf0c33d..187eb43cf4 100644
--- a/tests/regressiontests/templates/tests.py
+++ b/tests/regressiontests/templates/tests.py
@@ -720,10 +720,10 @@ class Templates(unittest.TestCase):
'inheritance25': ("{% extends context_template.1 %}{% block first %}2{% endblock %}{% block second %}4{% endblock %}", {'context_template': [template.Template("Wrong"), template.Template("1{% block first %}_{% endblock %}3{% block second %}_{% endblock %}")]}, '1234'),
# Set up a base template to extend
- 'inheritance26': ("no tags", {}, 'no tags'),
+ 'inheritance26': ("no tags", {}, 'no tags'),
- # Inheritance from a template that doesn't have any blocks
- 'inheritance27': ("{% extends 'inheritance26' %}", {}, 'no tags'),
+ # Inheritance from a template that doesn't have any blocks
+ 'inheritance27': ("{% extends 'inheritance26' %}", {}, 'no tags'),
### I18N ##################################################################