Removed a .mo file incorrectly put under Git control.

This commit is contained in:
Ramiro Morales 2013-02-26 22:45:08 -03:00
parent f0bd553922
commit a28e2e7c4d
2 changed files with 4 additions and 0 deletions

View File

@ -56,6 +56,10 @@ class PercentRenderingTests(MessageCompilationTests):
LOCALE='it'
MO_FILE='locale/%s/LC_MESSAGES/django.mo' % LOCALE
def setUp(self):
super(PercentRenderingTests, self).setUp()
self.addCleanup(os.unlink, os.path.join(test_dir, self.MO_FILE))
@override_settings(LOCALE_PATHS=(os.path.join(test_dir, 'locale'),))
def test_percent_symbol_escaping(self):
from django.template import Template, Context