From df45e35661fbbb888465552910b9996019f193c8 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 19 Jun 2011 19:25:26 +0000 Subject: [PATCH] Fixed broken i18n tests after r16437. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16440 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/i18n/commands/extraction.py | 2 +- .../{template_with_error.txt => template_with_error.tpl} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/regressiontests/i18n/commands/templates/{template_with_error.txt => template_with_error.tpl} (100%) diff --git a/tests/regressiontests/i18n/commands/extraction.py b/tests/regressiontests/i18n/commands/extraction.py index 7341c4f7cb..4f476340f2 100644 --- a/tests/regressiontests/i18n/commands/extraction.py +++ b/tests/regressiontests/i18n/commands/extraction.py @@ -79,7 +79,7 @@ class BasicExtractorTests(ExtractorTests): def test_extraction_error(self): os.chdir(self.test_dir) - shutil.copyfile('./templates/template_with_error.txt', './templates/template_with_error.html') + shutil.copyfile('./templates/template_with_error.tpl', './templates/template_with_error.html') self.assertRaises(SyntaxError, management.call_command, 'makemessages', locale=LOCALE, verbosity=0) try: management.call_command('makemessages', locale=LOCALE, verbosity=0) diff --git a/tests/regressiontests/i18n/commands/templates/template_with_error.txt b/tests/regressiontests/i18n/commands/templates/template_with_error.tpl similarity index 100% rename from tests/regressiontests/i18n/commands/templates/template_with_error.txt rename to tests/regressiontests/i18n/commands/templates/template_with_error.tpl