diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-01-17 22:58:53 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-02-26 21:51:06 +0100 |
| commit | 58a2fc820eba04a24c7cc6d4c66b5aea6abe8c5a (patch) | |
| tree | 6efb0b77bfb9992b5541fd0c8b4c3be24f83dbfd | |
| parent | 87cc3da81417248ed70133735a63348057794b54 (diff) | |
Fixed i18n test to match changed translation
Forward port of ab6ff2e0ac from stable/1.5
| -rw-r--r-- | tests/i18n/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/i18n/tests.py b/tests/i18n/tests.py index 824ef6c165..c9abe01f8c 100644 --- a/tests/i18n/tests.py +++ b/tests/i18n/tests.py @@ -646,7 +646,7 @@ class FormattingTests(TestCase): with translation.override('de-at', deactivate=True): self.assertEqual('66.666,666', Template('{{ n }}').render(self.ctxt)) with translation.override('es-us', deactivate=True): - self.assertEqual('31 de diciembre de 2009', date_format(self.d)) + self.assertEqual('31 de Diciembre de 2009', date_format(self.d)) def test_localized_input(self): """ |
