summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-03-02 21:47:55 +0000
committerJannis Leidel <jannis@leidel.info>2011-03-02 21:47:55 +0000
commit84f398e77c0916a44197a1ae767dbd8e62532052 (patch)
tree543be49d3f506529fde0b891c6ee7cbe5a63d329
parentb34a08e07019eca965d48a15caebcc9cc90b0edc (diff)
Fixed typo in r15710.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15711 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--tests/regressiontests/templates/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/templates/tests.py b/tests/regressiontests/templates/tests.py
index ba1a5809f2..6c19f70b7b 100644
--- a/tests/regressiontests/templates/tests.py
+++ b/tests/regressiontests/templates/tests.py
@@ -1139,7 +1139,7 @@ class Templates(unittest.TestCase):
'i18n27': ('{% load i18n %}{% blocktrans count number as counter %}1 result{% plural %}{{ counter }} results{% endblocktrans %}', {'number': 1, 'LANGUAGE_CODE': 'ru'}, u'1 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442'),
# blocktrans handling of variables which are not in the context.
- 'i18n34': ('{% load i18n %}{% blocktrans %}{{ missing }}{% endblocktrans %}', {}, u''),
+ 'i18n28': ('{% load i18n %}{% blocktrans %}{{ missing }}{% endblocktrans %}', {}, u''),
### HANDLING OF TEMPLATE_STRING_IF_INVALID ###################################